Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add 2 additional Nue models FB56+ZSW1GKJ2.5 & FTB56+ZSN16HG1.0 #348

Merged
merged 1 commit into from
Mar 15, 2019
Merged
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
30 changes: 24 additions & 6 deletions devices.js
Original file line number Diff line number Diff line change
Expand Up @@ -1750,6 +1750,15 @@ const devices = [
toZigbee: [tz.on_off],
fromZigbee: [fz.nue_click, fz.ignore_power_report, fz.ignore_power_change],
},
{
zigbeeModel: ['FTB56+ZSN16HG1.0'],
model: 'HGZB-02S',
vendor: 'Nue / 3A',
description: 'Smart 2 key scene wall switch',
supports: 'on/off, click',
toZigbee: [tz.on_off],
fromZigbee: [fz.nue_click, fz.ignore_power_report, fz.ignore_power_change],
},
{
zigbeeModel: ['FB56+ZSN08KJ2.3'],
model: 'HGZB-045',
Expand Down Expand Up @@ -1807,7 +1816,7 @@ const devices = [
zigbeeModel: ['FB56+ZSC05HG1.0'],
model: 'HGZB-04D',
vendor: 'Nue / 3A',
description: 'ZigBee smart dimmer wall switch',
description: 'Smart dimmer wall switch',
supports: 'on/off, brightness',
toZigbee: [tz.on_off, tz.light_brightness],
fromZigbee: [fz.state, fz.ignore_onoff_change, fz.brightness_report, fz.ignore_light_brightness_change],
Expand Down Expand Up @@ -1835,7 +1844,16 @@ const devices = [
zigbeeModel: ['FB56+ZSW05HG1.2'],
model: 'HGZB-01A/02A',
vendor: 'Nue / 3A',
description: 'ZigBee one gang wall / in-wall smart switch',
description: 'Smart 1 gang wall or in-wall switch',
supports: 'on/off',
fromZigbee: [fz.state, fz.ignore_onoff_change],
toZigbee: [tz.on_off],
},
{
zigbeeModel: ['FB56+ZSW1GKJ2.5'],
model: 'HGZB-41',
vendor: 'Nue / 3A',
description: 'Smart one gang wall switch',
supports: 'on/off',
fromZigbee: [fz.state, fz.ignore_onoff_change],
toZigbee: [tz.on_off],
Expand All @@ -1844,7 +1862,7 @@ const devices = [
zigbeeModel: ['FNB56-SKT1DHG1.4'],
model: 'MG-AUWS01',
vendor: 'Nue / 3A',
description: 'ZigBee Double GPO',
description: 'Smart Double GPO',
supports: 'on/off',
fromZigbee: [fz.nue_power_state, fz.ignore_onoff_change],
toZigbee: [tz.on_off],
Expand All @@ -1856,20 +1874,20 @@ const devices = [
zigbeeModel: ['FNB56-ZSW23HG1.1'],
model: 'HGZB-01A',
vendor: 'Nue / 3A',
description: 'ZigBee smart light controller',
description: 'Smart light controller',
extend: generic.light_onoff_brightness,
},
{
zigbeeModel: ['FNB56-ZSC01LX1.2'],
model: 'HGZB-02A',
vendor: 'Nue / 3A',
description: 'ZigBee smart light controller',
description: 'Smart light controller',
extend: generic.light_onoff_brightness,
},
{
zigbeeModel: ['FNB56-ZSW01LX2.0'],
model: 'HGZB-42-UK / HGZB-41',
description: 'Zigbee smart switch 1/2 gang',
description: 'Smart switch 1 or 2 gang',
vendor: 'Nue / 3A',
supports: 'on/off',
fromZigbee: [fz.ignore_onoff_change, fz.state],
Expand Down