zigbee-herdsman-converters 14.0.418 → 14.0.419
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/adeo.js +1 -1
- package/devices/philips.js +8 -0
- package/devices/tuya.js +2 -0
- package/npm-shrinkwrap.json +1 -1
- package/package.json +1 -1
package/devices/adeo.js
CHANGED
package/devices/philips.js
CHANGED
|
@@ -2706,6 +2706,14 @@ module.exports = [
|
|
|
2706
2706
|
extend: hueExtend.light_onoff_brightness(),
|
|
2707
2707
|
ota: ota.zigbeeOTA,
|
|
2708
2708
|
},
|
|
2709
|
+
{
|
|
2710
|
+
zigbeeModel: ['915005997301'],
|
|
2711
|
+
model: '915005997301',
|
|
2712
|
+
vendor: 'Philips',
|
|
2713
|
+
description: 'Hue Bluetooth white & color ambiance ceiling lamp Infuse medium',
|
|
2714
|
+
extend: hueExtend.light_onoff_brightness_colortemp_color({colorTempRange: [153, 500]}),
|
|
2715
|
+
ota: ota.zigbeeOTA,
|
|
2716
|
+
},
|
|
2709
2717
|
{
|
|
2710
2718
|
zigbeeModel: ['915005997501'],
|
|
2711
2719
|
model: '915005997501',
|
package/devices/tuya.js
CHANGED
|
@@ -1158,6 +1158,7 @@ module.exports = [
|
|
|
1158
1158
|
vendor: 'TuYa',
|
|
1159
1159
|
whiteLabel: [{vendor: 'LELLKI', model: 'TS011F_plug'}, {vendor: 'NEO', model: 'NAS-WR01B'},
|
|
1160
1160
|
{vendor: 'BlitzWolf', model: 'BW-SHP15'}],
|
|
1161
|
+
ota: ota.zigbeeOTA,
|
|
1161
1162
|
fromZigbee: [fz.on_off, fz.electrical_measurement, fz.metering, fz.ignore_basic_report, fz.tuya_switch_power_outage_memory,
|
|
1162
1163
|
fz.ts011f_plug_indicator_mode, fz.ts011f_plug_child_mode],
|
|
1163
1164
|
toZigbee: [tz.on_off, tz.tuya_switch_power_outage_memory, tz.ts011f_plug_indicator_mode, tz.ts011f_plug_child_mode],
|
|
@@ -1207,6 +1208,7 @@ module.exports = [
|
|
|
1207
1208
|
description: 'Smart plug (with power monitoring by polling)',
|
|
1208
1209
|
vendor: 'TuYa',
|
|
1209
1210
|
whiteLabel: [{vendor: 'VIKEFON', model: 'TS011F'}, {vendor: 'BlitzWolf', model: 'BW-SHP15'}],
|
|
1211
|
+
ota: ota.zigbeeOTA,
|
|
1210
1212
|
fromZigbee: [fz.on_off, fz.electrical_measurement, fz.metering, fz.ignore_basic_report, fz.tuya_switch_power_outage_memory,
|
|
1211
1213
|
fz.ts011f_plug_indicator_mode, fz.ts011f_plug_child_mode],
|
|
1212
1214
|
toZigbee: [tz.on_off, tz.tuya_switch_power_outage_memory, tz.ts011f_plug_indicator_mode, tz.ts011f_plug_child_mode],
|
package/npm-shrinkwrap.json
CHANGED