Insteonhub binding for Insteon Hub 2242-222

I am a new user trying to configure a Insteon Hub 2242-222 using OpenHAB 1.8. When using the demo house, I configured the openhab.cfg to use the insteonhub binding:

insteonhub:host=192.168.0.8

I added a LampLink Dimmer #2457D2 to the demo.items file:

Switch Sw1 “Living Roomt light” (FF_Bath, Lights) {insteonhub=“device=27.23.97, bindingType=switch”}

This works perfectly.
The Wiki states you can use the plm binding starting in 1.8, so I tried that as I couldn’t find any info on configuring the motion sensor using the hub binding and that is the end goal. I changed the openhab.cfg to use the insteonplm binding:

insteonplm:port_0=/hub2/UserName;Password:@192.168.0.8:25105,poll_time=1000

I used the account I set up to control the hub as this model does not have a username and password on the box.
I then set up the same dimmer:

Switch Sw1 “Living Room Light” (FF_Bath, Lights) { insteonplm = “device=27.23.97:F00.00.19#switch” }
I also tried F00.00.01 and F00.00.02.

This does not work. The logs look like it connects and communicates:

21:34:52.891 [DEBUG] [i.internal.InsteonHubActivator:34 ] - InsteonHub binding has been started.
21:34:52.894 [DEBUG] [i.internal.GenericItemProvider:341 ] - Start processing binding configuration of Item ‘Sw2 (Type=SwitchItem, State=Uninitialized)’ with ‘InsteonHubGenericBindingProvider’ reader.
21:34:52.896 [DEBUG] [i.internal.GenericItemProvider:341 ] - Start processing binding configuration of Item ‘Sw1 (Type=SwitchItem, State=Uninitialized)’ with ‘InsteonHubGenericBindingProvider’ reader.
21:34:52.899 [DEBUG] [b.i.internal.InsteonHubBinding:243 ] - InsteonHubBinding activated
21:34:52.900 [DEBUG] [b.i.internal.InsteonHubBinding:201 ] - InsteonHubBinding updated
21:34:52.901 [INFO ] [insteonplm.InsteonPLMActivator:34 ] - Insteon PLM binding has been started.
21:34:52.904 [DEBUG] [i.internal.GenericItemProvider:341 ] - Start processing binding configuration of Item ‘motion_sensor (Type=ContactItem, State=Uninitialized)’ with ‘InsteonPLMGenericBindingProvider’ reader.
21:34:52.906 [DEBUG] [i.internal.GenericItemProvider:341 ] - Start processing binding configuration of Item ‘motion_sensor_battery_level (Type=NumberItem, State=Uninitialized)’ with ‘InsteonPLMGenericBindingProvider’ reader.
21:34:52.907 [DEBUG] [i.internal.GenericItemProvider:341 ] - Start processing binding configuration of Item ‘motion_sensor_light_level (Type=NumberItem, State=Uninitialized)’ with ‘InsteonPLMGenericBindingProvider’ reader.
21:34:52.910 [DEBUG] [.o.b.i.InsteonPLMActiveBinding:158 ] - activating binding
21:34:52.911 [DEBUG] [.o.b.i.InsteonPLMActiveBinding:265 ] - global binding config has arrived.
21:34:52.912 [INFO ] [.o.b.i.InsteonPLMActiveBinding:313 ] - dead device timeout set to 3000s
21:34:52.912 [DEBUG] [.o.b.i.InsteonPLMActiveBinding:269 ] - configuration update complete!
21:34:52.913 [DEBUG] [.o.b.i.InsteonPLMActiveBinding:352 ] - initializing…
21:34:52.913 [INFO ] [.service.AbstractActiveService:169 ] - InsteonPLM has been started
21:34:52.913 [INFO ] [.o.b.i.InsteonPLMActiveBinding:364 ] - config: port_0 -> /hub2/Username:Pasword@192.168.0.8:25105,poll_time=1000
21:34:52.915 [INFO ] [.o.b.i.InsteonPLMActiveBinding:670 ] - devices: 0 configured, 0 polling, msgs received: 0
21:34:52.916 [DEBUG] [o.o.b.i.internal.driver.Poller:176 ] - starting poll thread.
21:34:52.921 [DEBUG] [o.o.b.i.internal.driver.Driver:75 ] - added new port: port_0 /hub2/Username:Password@192.168.0.8:25105,poll_time=1000
21:34:52.921 [INFO ] [.o.b.i.InsteonPLMActiveBinding:364 ] - config: service.pid -> org.openhab.insteonplm

But the switch will not operate.
This raises many questions.
Will my hub (2242-222) work with the insteonplm binding? If so, where is my configuration issue?
If not, will the insteonhub binding work with motion, water, and garage door sensors?

Thank you in advance for any help and guidance.

Yes, your hub should work with the insteonplm binding.

You are using the “old” 2012 hub. It uses a different way of accessing the hub, so it needs a different configuration line in the openhab.cfg. Uncomment/modify the relevant line there, it should be documented.

AFAIK the insteonhub binding is no longer supported.

Bernd

That works perfect. Thank you so much. In case someone else has the same
issue The working config lines are:

openhab.cfg
insteonplm:port_0=/hub/192.168.0.8:9761

demo.items
Switch Sw1 “Living Room light” (FF_Bath, Lights)
{insteonplm=“27.23.97:F00.00.19#dimmer”}

what do you have in your sitemap for this item you have defined?

sitemap demo label=“Demo House”
{
Frame {
Frame label=“House” {
Text label=“House” icon=“house”{
Frame {
Switch item=Sw1

        }
    }
}

}