Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
import org.openhab.binding.insteon.internal.transport.message.FieldException;
import org.openhab.binding.insteon.internal.transport.message.InvalidMessageTypeException;
import org.openhab.binding.insteon.internal.transport.message.Msg;
import org.openhab.binding.insteon.internal.utils.HexUtils;
import org.openhab.core.io.transport.serial.SerialPortManager;

/**
Expand Down Expand Up @@ -251,8 +252,8 @@ private void handleModemInfo(Msg msg) throws FieldException {

DeviceType deviceType = productData.getDeviceType();
if (deviceType == null) {
logger.warn("unsupported product data for modem {} devCat:{} subCat:{}", address, deviceCategory,
subCategory);
logger.warn("unsupported product data for modem {} devCat:{} subCat:{}", address,
HexUtils.getHexString(deviceCategory), HexUtils.getHexString(subCategory));
return;
}
setAddress(address);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1054,16 +1054,19 @@
<description>USB Adapter</description>
<model>2448A7</model>
<vendor>Insteon</vendor>
<device-type>NetworkBridge_PLM</device-type>
</product>
<product devCat="0x03" subCat="0x20" productKey="0x00007E">
<description>USB Adapter</description>
<model>2448A7</model>
<vendor>Insteon</vendor>
<device-type>NetworkBridge_PLM</device-type>
</product>
<product devCat="0x03" subCat="0x21" productKey="0x00008E">
<description>USB Adapter (HouseLinc)</description>
<model>2448A7H</model>
<vendor>Insteon</vendor>
<device-type>NetworkBridge_PLM</device-type>
</product>
<product devCat="0x03" subCat="0x22" productKey="0x00008F">
<description>Central Controller Interface</description>
Expand All @@ -1074,6 +1077,7 @@
<description>USB Adapter (HouseLinc)</description>
<model>2448A7H</model>
<vendor>Insteon</vendor>
<device-type>NetworkBridge_PLM</device-type>
</product>
<product devCat="0x03" subCat="0x24" productKey="0x0000A2">
<description>TouchLinc</description>
Expand Down