zigbee-herdsman-converters 15.0.31 → 15.0.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/devices/bitron.js +1 -1
- package/devices/iluminize.js +23 -0
- package/devices/saswell.js +1 -0
- package/package.json +1 -1
package/devices/bitron.js
CHANGED
|
@@ -194,7 +194,7 @@ module.exports = [
|
|
|
194
194
|
tz.thermostat_occupied_cooling_setpoint, tz.thermostat_local_temperature_calibration, tz.thermostat_local_temperature,
|
|
195
195
|
tz.thermostat_running_state, tz.thermostat_temperature_display_mode, tz.thermostat_keypad_lockout, tz.thermostat_system_mode],
|
|
196
196
|
exposes: [e.battery(), exposes.climate().withSetpoint('occupied_heating_setpoint', 7, 30, 0.5).withLocalTemperature()
|
|
197
|
-
.withSystemMode(['off', '
|
|
197
|
+
.withSystemMode(['off', 'heat']).withRunningState(['idle', 'heat', 'cool'])
|
|
198
198
|
.withLocalTemperatureCalibration(-30, 30, 0.1), e.keypad_lockout()],
|
|
199
199
|
meta: {battery: {voltageToPercentage: '3V_2500_3200'}},
|
|
200
200
|
configure: async (device, coordinatorEndpoint, logger) => {
|
package/devices/iluminize.js
CHANGED
|
@@ -179,6 +179,29 @@ module.exports = [
|
|
|
179
179
|
return {ep1: 1, ep2: 2, ep3: 3, ep4: 4};
|
|
180
180
|
},
|
|
181
181
|
},
|
|
182
|
+
{
|
|
183
|
+
zigbeeModel: ['511.324'],
|
|
184
|
+
model: '511.324',
|
|
185
|
+
vendor: 'Iluminize',
|
|
186
|
+
description: 'Zigbee handheld remote CCT 4 channels',
|
|
187
|
+
fromZigbee: [fz.battery, fz.command_move_to_color, fz.command_move_to_color_temp, fz.command_move_hue,
|
|
188
|
+
fz.command_step, fz.command_recall, fz.command_on, fz.command_off, fz.command_toggle, fz.command_stop,
|
|
189
|
+
fz.command_move, fz.command_color_loop_set, fz.command_ehanced_move_to_hue_and_saturation],
|
|
190
|
+
exposes: [e.battery(), e.action([
|
|
191
|
+
'color_move', 'color_temperature_move', 'hue_move', 'brightness_step_up', 'brightness_step_down',
|
|
192
|
+
'recall_*', 'on', 'off', 'toggle', 'brightness_stop', 'brightness_move_up', 'brightness_move_down',
|
|
193
|
+
'color_loop_set', 'enhanced_move_to_hue_and_saturation', 'hue_stop']),
|
|
194
|
+
exposes.numeric('action_group', ea.STATE)
|
|
195
|
+
.withDescription('Shows the zigbee2mqtt group bound to the active data point EP(1-4).'),
|
|
196
|
+
exposes.numeric('action_transition_time', ea.STATE),
|
|
197
|
+
exposes.numeric('action_step_size', ea.STATE),
|
|
198
|
+
exposes.numeric('action_rate', ea.STATE)],
|
|
199
|
+
toZigbee: [],
|
|
200
|
+
meta: {multiEndpoint: true},
|
|
201
|
+
endpoint: (device) => {
|
|
202
|
+
return {ep1: 1, ep2: 2, ep3: 3, ep4: 4};
|
|
203
|
+
},
|
|
204
|
+
},
|
|
182
205
|
{
|
|
183
206
|
zigbeeModel: ['ZGRC-TEUR-002'],
|
|
184
207
|
model: '511.541',
|
package/devices/saswell.js
CHANGED
|
@@ -24,6 +24,7 @@ module.exports = [
|
|
|
24
24
|
{modelID: 'TS0601', manufacturerName: '_TZE200_h4cgnbzg'},
|
|
25
25
|
{modelID: 'TS0601', manufacturerName: '_TZE200_exfrnlow'},
|
|
26
26
|
{modelID: 'TS0601', manufacturerName: '_TZE200_9m4kmbfu'},
|
|
27
|
+
{modelID: 'TS0601', manufacturerName: '_TZE200_3yp57tby'},
|
|
27
28
|
],
|
|
28
29
|
model: 'SEA801-Zigbee/SEA802-Zigbee',
|
|
29
30
|
vendor: 'Saswell',
|