forked from Koenkk/zigbee-herdsman-converters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaurora_lighting.js
204 lines (200 loc) · 9.04 KB
/
aurora_lighting.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
const exposes = require('../lib/exposes');
const fz = {...require('../converters/fromZigbee'), legacy: require('../lib/legacy').fromZigbee};
const tz = require('../converters/toZigbee');
const reporting = require('../lib/reporting');
const extend = require('../lib/extend');
const e = exposes.presets;
module.exports = [
{
zigbeeModel: ['TWGU10Bulb50AU'],
model: 'AU-A1GUZBCX5',
vendor: 'Aurora Lighting',
description: 'AOne 5.4W smart tuneable GU10 lamp',
extend: extend.light_onoff_brightness_colortemp(),
},
{
zigbeeModel: ['FWG125Bulb50AU'],
model: 'AU-A1VG125Z5E/19',
vendor: 'Aurora Lighting',
description: 'AOne 4W smart dimmable G125 lamp 1900K',
meta: {turnsOffAtBrightness1: true},
extend: extend.light_onoff_brightness(),
},
{
zigbeeModel: ['FWGU10Bulb50AU', 'FWGU10Bulb01UK'],
model: 'AU-A1GUZB5/30',
vendor: 'Aurora Lighting',
description: 'AOne 4.8W smart dimmable GU10 lamp 3000K',
extend: extend.light_onoff_brightness(),
},
{
zigbeeModel: ['FWA60Bulb50AU'],
model: 'AU-A1VGSZ5E/19',
vendor: 'Aurora Lighting',
description: 'AOne 4W smart dimmable Vintage GLS lamp 1900K',
extend: extend.light_onoff_brightness({disableEffect: true}),
},
{
zigbeeModel: ['RGBGU10Bulb50AU'],
model: 'AU-A1GUZBRGBW',
vendor: 'Aurora Lighting',
description: 'AOne 5.6w smart RGBW tuneable GU10 lamp',
extend: extend.light_onoff_brightness_colortemp_color(),
},
{
zigbeeModel: ['RGBBulb01UK', 'RGBBulb02UK'],
model: 'AU-A1GSZ9RGBW_HV-GSCXZB269K',
vendor: 'Aurora Lighting',
description: 'AOne 9.5W smart RGBW GLS E27/B22',
extend: extend.light_onoff_brightness_colortemp_color(),
},
{
zigbeeModel: ['Remote50AU'],
model: 'AU-A1ZBRC',
vendor: 'Aurora Lighting',
description: 'AOne smart remote',
fromZigbee: [fz.battery, fz.command_on, fz.command_off, fz.command_step],
toZigbee: [],
exposes: [e.battery(), e.action(['on', 'off', 'brightness_step_up', 'brightness_step_down'])],
configure: async (device, coordinatorEndpoint, logger) => {
const endpoint = device.getEndpoint(1);
await reporting.bind(endpoint, coordinatorEndpoint, ['genOnOff', 'genLevelCtrl', 'genPowerCfg']);
},
},
{
zigbeeModel: ['MotionSensor51AU'],
model: 'AU-A1ZBPIRS',
vendor: 'Aurora Lighting',
description: 'AOne PIR sensor',
fromZigbee: [fz.ias_occupancy_alarm_1, fz.illuminance],
toZigbee: [],
configure: async (device, coordinatorEndpoint, logger) => {
const endpoint = device.getEndpoint(39);
await reporting.bind(endpoint, coordinatorEndpoint, ['msIlluminanceMeasurement']);
await reporting.illuminance(endpoint);
},
exposes: [e.occupancy(), e.battery_low(), e.tamper(), e.illuminance(), e.illuminance_lux()],
},
{
zigbeeModel: ['SingleSocket50AU'],
model: 'AU-A1ZBPIAB',
vendor: 'Aurora Lighting',
description: 'Power plug Zigbee EU',
fromZigbee: [fz.identify, fz.on_off, fz.electrical_measurement],
exposes: [e.switch(), e.power(), e.voltage(), e.current()],
toZigbee: [tz.on_off],
configure: async (device, coordinatorEndpoint, logger) => {
const endpoint = device.getEndpoint(1);
await reporting.bind(endpoint, coordinatorEndpoint, ['genIdentify', 'genOnOff', 'haElectricalMeasurement']);
await reporting.onOff(endpoint);
},
},
{
zigbeeModel: ['WindowSensor51AU'],
model: 'AU-A1ZBDWS',
vendor: 'Aurora Lighting',
description: 'Magnetic door & window contact sensor',
fromZigbee: [fz.ias_contact_alarm_1, fz.battery],
toZigbee: [],
exposes: [e.contact(), e.battery_low(), e.tamper(), e.battery()],
},
{
zigbeeModel: ['WallDimmerMaster'],
model: 'AU-A1ZB2WDM',
vendor: 'Aurora Lighting',
description: 'AOne 250W smart rotary dimmer module',
extend: extend.light_onoff_brightness({noConfigure: true}),
configure: async (device, coordinatorEndpoint, logger) => {
await extend.light_onoff_brightness().configure(device, coordinatorEndpoint, logger);
const endpoint = device.getEndpoint(1);
await reporting.bind(endpoint, coordinatorEndpoint, ['genLevelCtrl', 'genOnOff']);
},
},
{
zigbeeModel: ['DoubleSocket50AU'],
model: 'AU-A1ZBDSS',
vendor: 'Aurora Lighting',
description: 'Double smart socket UK',
fromZigbee: [fz.identify, fz.on_off, fz.electrical_measurement],
exposes: [e.switch().withEndpoint('left'), e.switch().withEndpoint('right'),
e.power().withEndpoint('left'), e.power().withEndpoint('right')],
toZigbee: [tz.on_off],
meta: {multiEndpoint: true},
endpoint: (device) => {
return {'left': 1, 'right': 2};
},
configure: async (device, coordinatorEndpoint, logger) => {
const endpoint1 = device.getEndpoint(1);
await reporting.bind(endpoint1, coordinatorEndpoint, ['genIdentify', 'genOnOff', 'haElectricalMeasurement']);
await reporting.onOff(endpoint1);
const endpoint2 = device.getEndpoint(2);
await reporting.bind(endpoint2, coordinatorEndpoint, ['genIdentify', 'genOnOff', 'haElectricalMeasurement']);
await reporting.onOff(endpoint2);
},
},
{
zigbeeModel: ['SmartPlug51AU'],
model: 'AU-A1ZBPIA',
vendor: 'Aurora Lighting',
description: 'Aurora smart plug',
fromZigbee: [fz.identify, fz.on_off, fz.electrical_measurement, fz.metering, fz.device_temperature],
exposes: [e.switch(), e.power(), e.voltage(), e.current(), e.device_temperature(), e.energy()],
toZigbee: [tz.on_off],
endpoint: (device) => {
return {'default': 2};
},
configure: async (device, coordinatorEndpoint, logger) => {
const endpoint = device.getEndpoint(2);
await reporting.bind(endpoint, coordinatorEndpoint, ['genOnOff', 'genIdentify', 'haElectricalMeasurement', 'seMetering',
'genDeviceTempCfg']);
await reporting.onOff(endpoint);
await reporting.deviceTemperature(endpoint);
await reporting.readEletricalMeasurementMultiplierDivisors(endpoint);
// Report 5v voltage change, 5a current, 5 watt power change to reduce the noise
await reporting.rmsVoltage(endpoint, {change: 500});
await reporting.rmsCurrent(endpoint, {change: 500});
await reporting.activePower(endpoint, {change: 5});
await reporting.readMeteringMultiplierDivisor(endpoint);
await reporting.instantaneousDemand(endpoint, {change: 500});
},
},
{
zigbeeModel: ['1GBatteryDimmer50AU'],
model: 'AU-A1ZBR1GW',
vendor: 'Aurora Lighting',
description: 'AOne one gang wireless battery rotary dimmer',
fromZigbee: [fz.battery, fz.command_on, fz.command_off, fz.command_step, fz.command_step_color_temperature],
toZigbee: [],
exposes: [e.battery(), e.action([
'on', 'off', 'brightness_step_up', 'brightness_step_down', 'color_temperature_step_up', 'color_temperature_step_down'])],
meta: {battery: {voltageToPercentage: '3V_2100'}},
configure: async (device, coordinatorEndpoint, logger) => {
const endpoint1 = device.getEndpoint(1);
await reporting.bind(endpoint1, coordinatorEndpoint,
['genIdentify', 'genOnOff', 'genLevelCtrl', 'lightingColorCtrl', 'genPowerCfg']);
await reporting.batteryVoltage(endpoint1);
},
},
{
zigbeeModel: ['2GBatteryDimmer50AU'],
model: 'AU-A1ZBR2GW',
vendor: 'Aurora Lighting',
description: 'AOne two gang wireless battery rotary dimmer',
fromZigbee: [fz.battery, fz.command_on, fz.command_off, fz.command_step, fz.command_step_color_temperature],
toZigbee: [],
exposes: [e.battery(), e.action([
'on', 'off', 'brightness_step_up', 'brightness_step_down', 'color_temperature_step_up', 'color_temperature_step_down'])],
meta: {multiEndpoint: true, battery: {voltageToPercentage: '3V_2100'}},
endpoint: (device) => {
return {'right': 1, 'left': 2};
},
configure: async (device, coordinatorEndpoint, logger) => {
const endpoint1 = device.getEndpoint(1);
await reporting.bind(endpoint1, coordinatorEndpoint,
['genIdentify', 'genOnOff', 'genLevelCtrl', 'lightingColorCtrl', 'genPowerCfg']);
await reporting.batteryVoltage(endpoint1);
const endpoint2 = device.getEndpoint(2);
await reporting.bind(endpoint2, coordinatorEndpoint, ['genIdentify', 'genOnOff', 'genLevelCtrl', 'lightingColorCtrl']);
},
},
];