I have openHab2 running on RPi3 with openhabianpi. I setup the InsteonPLM binding and connected to the HUB. The log looks good and the linked devices were loaded from the database. But, with very basic items and site map, I can’t make a simple on/off module or led bulb work.
Here’s my items, sitemap and log snippet.
Items
Switch ledbulb1 “Living Room Light” {insteonplm=“32.C5.70:F00.00.13#fastonoff”}
Switch outlet1 “Kichen Light” {insteonplm=“2C.F3.BE:F00.00.1B#switch”}
Sitemap
sitemap insteonplm label=“Insteon”
{
Frame label=“Lights” {
Switch item=ledbulb1 label=“Living Room Light” mappings=[faston=On,fastoff=Off]
Switch item=outlet1 label=“Kitchen Light” icon=“light” mappings=[ON=On,OFF=Off]
}
}
Log
2017-10-11 19:03:03.770 [WARN ] [thome.io.rest.core.item.ItemResource] - Received HTTP POST request at 'items/ledbulb1' with an invalid status value 'faston'.
2017-10-11 19:03:08.618 [WARN ] [thome.io.rest.core.item.ItemResource] - Received HTTP POST request at 'items/ledbulb1' with an invalid status value 'fastoff'.
2017-10-11 19:03:30.069 [ItemCommandEvent ] - Item 'outlet1' received command ON
2017-10-11 19:03:30.071 [ItemStateChangedEvent ] - outlet1 changed from OFF to ON
2017-10-11 19:03:35.571 [ItemCommandEvent ] - Item 'outlet1' received command OFF
2017-10-11 19:03:35.577 [ItemStateChangedEvent ] - outlet1 changed from ON to OFF
Is there a reference anywhere for entering Insteon items?
For the LED bulb, I’ve tried commands: on, off, faston, fastoff, 0, 100, etc
All result invalid.
For the on/off module, it looks like the command is valid, but does not switch.
This should be easier and the docs need to be clearer.
Thanks for help.