diff --git a/src/HmIPPlatform.ts b/src/HmIPPlatform.ts old mode 100755 new mode 100644 index a1d563b..2e4562f --- a/src/HmIPPlatform.ts +++ b/src/HmIPPlatform.ts @@ -288,6 +288,7 @@ export class HmIPPlatform implements DynamicPlatformPlugin { } else if (device.type === 'SMOKE_DETECTOR') { homebridgeDevice = new HmIPSmokeDetector(this, hmIPAccessory.accessory); } else if ( device.type === 'PLUGABLE_SWITCH' + || device.type === 'FULL_FLUSH_INPUT_SWITCH' || device.type === 'PRINTED_CIRCUIT_BOARD_SWITCH_BATTERY' || device.type === 'PRINTED_CIRCUIT_BOARD_SWITCH_2' // Only first channel || device.type === 'OPEN_COLLECTOR_8_MODULE' // Only first channel diff --git a/src/devices/HmIPSwitch.ts b/src/devices/HmIPSwitch.ts old mode 100755 new mode 100644 index f15eed6..1ce4b53 --- a/src/devices/HmIPSwitch.ts +++ b/src/devices/HmIPSwitch.ts @@ -23,6 +23,7 @@ interface SwitchChannel { * Switches * * HMIP-PS (Pluggable Switch) + * HMIP-FSI16 (Full Flush Input Switch) * HMIP-PCBS (Switch Circuit Board - 1 channel) * HMIP-PCBS-BAT (Printed Circuit Board Switch Battery) * HMIP-PCBS2 (Switch Circuit Board - 2x channels) diff --git a/src/devices/HmIPSwitchMeasuring.ts b/src/devices/HmIPSwitchMeasuring.ts old mode 100755 new mode 100644 diff --git a/src/devices/HmIPSwitchNotificationLight.ts b/src/devices/HmIPSwitchNotificationLight.ts old mode 100755 new mode 100644