Hardware: Intel Q9650 on Dell 0G261D motherboard
OS: Ubuntu 18.04.1 LTS
JRE: OpenJDK 1.8.0_192
OpenHAB 2.4
There are a lot of threads out there on this issue but none have solved my issue. In addition to my attempted installation of the Insteon PLM I have a zwave controller installed and working fine, and this is the only other USB hardware installed.
My init.py settings are (after eliminating the commented out noise):
from console_commands import *
from keypad2487S import *
from thermostat2441TH import *
from modem2413U import *
from switch2477S import *
from dimmer2477D import *
from ledBulb2672 import *
def connectToMyHub():
“”“connects to my insteon hub modem at pre-defined address”""
connectToHub(“insteonhub”, 25105, 1000, “MyHubLogin”, “MyHubPassword”)
#If you are using a legacy hub (pre-2014 hub)
def connectToMyLegacyHub():
“”“connects to my insteon hub modem at pre-defined address”""
connectToLegacyHub(“insteonhub”, 9761) # syntax is address, port (generally 9761)
def connectToMySerial():
“”“connects to my modem on pre-defined serial port”""
connectToSerial("/dev/ttyUSB0")
connectToMy…() function
connectToMySerial()
modem = Modem2413U(“house_plm”, “48.EF.F9”)
wall_switch = Switch2635(“wall_switch”, “36.6B.50”)
Within my insteonplm.cfg file in /services is:
port_0=/dev/ttyUSB0
poll_interval=300000
refresh=60000
I now have openhab log files chock full of the following:
2018-12-29 22:15:21.814 [INFO ] [g.insteonplm.InsteonPLMActiveBinding] - devices: 0 configured, 0 polling, msgs received: 0
2018-12-29 22:16:21.815 [INFO ] [g.insteonplm.InsteonPLMActiveBinding] - devices: 0 configured, 0 polling, msgs received: 0
2018-12-29 22:17:21.815 [INFO ] [g.insteonplm.InsteonPLMActiveBinding] - devices: 0 configured, 0 polling, msgs received: 0
I’m wondering if I have a port conflict. I’ve been over every setting I can find online and everything seems ok…