Pauli Anttila
Members-
Antal indlæg
154 -
Medlem siden
-
Days Won
8
Pauli Anttila last won the day on December 10 2019
Pauli Anttila had the most liked content!
Seneste besøgende på profilen
Blokken med seneste besøgende er deaktiveret, og bliver ikke vist til andre
Pauli Anttila's Achievements
-
@Plindberg, IHC Visual seems to show RF device serial numbers in hex string format (0x640207381599) and IHC binding support serial numbers in decimal format. 0x640207381599 -> 109959873828249 Otherwise you channel and item definitions seems to be correct.
-
Hjælp til at styre Ikea pærer fra ihc tryk via OpenHAB
question svarede på Pauli Anttila's Sorensen1212 i OpenHAB
Sorry to jump in english, but I think you could do one button logic easily also via openHAB rules. For example... When push-button-trigger channel receive: 1. LONG_PRESS Check the current light state and send INCREASE or DECREASE command depending of the current state and store direction (up or down). You can also send value explicitly e.g. current dimmer value +/- 10 if INC or DEC is too slow. Start timer which will send next command e.g. after 100ms (INCREASE or DECREASE depending of the direction) and restart the timer which will send again new commmand and so on. When 0 or 100 value is reached you can change the direction or start it again from another head or what ever you want to do. 2. SHORT_PRESS Toggle light (check current state of the light and turn it on or off depending of the current state). Stop timer 3. RELEASED Stop timer -
@EjvindHald, Location isn’t Thing specific feature, so it should be available for all things. https://www.openhab.org/docs/configuration/things.html#defining-things-using-files
-
Jakob Hauerslev reacted to et svar på et spørgsmål: Alarm i google home
-
Yes, configuration file contains hostname (new syntax), but binding itself is still the old which assume that address is ip rather than hostname.
-
@Jakob Hauerslev, most probably you are using old version of the binding where ihc controller address is not "hostname" but "ip". Newer binding version ihc:controller:1 [ hostname="192.168.1.10"... Older version: ihc:controller:1 [ ip="192.168.1.10"...
-
To spørgsmål: Homekit niveau 100 - tryk der ændrer IKEA outlet
question svarede på Pauli Anttila's krede21 i OpenHAB
To be able to receive PRESSED, RELEASED, SHORT_PRESS, LONG_PRESS triggers, you need to introduce push-button-trigger channel. Channels can be added via PaperUI or via thing files. Thing files example: Type push-button-trigger : my_test_trigger "My Test Trigger" [ resourceId=3988827, longPressTime=1000 ] Rule example: rule "My test trigger test rule" when Channel 'ihc:controller:elko:my_test_trigger' triggered SHORT_PRESS then logInfo("Test","Short press detected") end See more details from binding documentation and examples. -
Binding between item and thing stops working after reboot
question svarede på Pauli Anttila's kerm i OpenHAB
@kerm, communication between openHAB and IHC controller doesn't work very well. Most of the communication ends up to timeout, which means that IHC controller didn't send response to IHC binding. You could try to increase the timeout which is by default 5000ms, but not sure if that will solve your problem. What are your IHC controller HW and SW versions? You are using rather old version of the binding (around 1 year old), so I recommend to use newer one. -
Binding between item and thing stops working after reboot
question svarede på Pauli Anttila's kerm i OpenHAB
@kerm, could you provide openhab logs (before and after openhab reboot), otherwise it's rather impossible to give any help. Anyhow, something is wrong in your pi enviroment. Do you use any other binding? Do they have same behaviour? Maybe your pi's filesystem is on read only mode? -
@Nicholai85, most probably you using old snapshot version where hostname parameter doesn’t exists. In older version hostname parameter is called ”ip” rather than ”hostname”.
-
Nicholai85 reacted to et svar på et spørgsmål: google assistent
-
@Nicholai85, did you add new channel or tried to edit automatically created channel? I just tested PaperUI and added new channel with pulse width parameter + new item + linked channel to item fully via PaperUI without problem.
-
Same ResourceId can be used as many channels you want and there shouldn’t be any problems even they are linked. If they are linked to same item, then item commands are send multiple times to ihc controller.
-
@HFW, You shouldn't change automatically generated channels as you changes will be overwritten in next time when binding is reinitialised, which actually happen immediately when you click save button on paperUI. Only channels from inputs and outputs modules and wireless devices are generated automatically, and it doesn't make sense to define pulse width functionality to these real outputs. Function block staff need to be added manually. I don't use PaperUI my self for IHC binding, but I auto create basic channels and then introduce additional channels to things file. And then I link all channels (auto created and manually added) to items in item file. Thing file example: ihc:controller:elko [ hostname="192.168.1.2", username="openhab", password="secret", timeout=5000, loadProjectFile=true, createChannelsAutomatically=true ] { Channels: Type switch : my_test_switch "My Additional Test Switch" [ resourceId=3988840 ] } Items file example: Switch auto_switch "Auto Switch" { channel="ihc:controller:elko:output3988827" } Switch manual_switch "Manual Switch" { channel="ihc:controller:elko:my_test_switch" } But if you want to use just PaperUI, you can add additional channels from there as well.
-
h.hojgaard reacted to et spørgsmål: openHAB2 IHC binding
-
You should change ip parameter name to hostname ihc:controller:elko [ hostname="192.168.0.3:443", username="admin", password="password", timeout=8000, loadProjectFile=true, createChannelsAutomatically=true ] Have you read https://www.openhab.org/addons/bindings/ihc/ ? And I propose to read https://www.openhab.org/docs/ pages to get understanding of the basic openHAB concepts. Read carefully the first page and then follow the links end of the pages. (next page is "Concepts Overview -> , etc"). After that you should have pretty clear understanding of the items, things, channels, etc.
-
@bozidar, I believe you are using rather new version of the binding, where controller network address is not anymore ip but hostname. Because hostname parameter is mandatory, binding is not started and you seen configuration pending error. From logs you most probably see the reason as well. Example ihc:controller:elko [ hostname="192.168.1.2", username="openhab", password="secret", timeout=5000, loadProjectFile=true, createChannelsAutomatically=false ]
-
IHC binding 2 is merged after 2.5 M1 release. M1 is pretty old and because of openHAB build system update, there is no M2 release yet, but Snapshot releases contains the new IHC binding.