zigbee-herdsman-converters 15.0.46 → 15.0.47
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/bosch.js +16 -0
- package/devices/ikea.js +3 -5
- package/devices/philips.js +7 -0
- package/devices/zemismart.js +1 -1
- package/package.json +1 -1
package/devices/bosch.js
CHANGED
|
@@ -522,6 +522,22 @@ const definition = [
|
|
|
522
522
|
exposes.enum('heartbeat', ea.ALL, Object.keys(stateOffOn)).withDescription('Enable/disable heartbeat'),
|
|
523
523
|
],
|
|
524
524
|
},
|
|
525
|
+
{
|
|
526
|
+
zigbeeModel: ['RFPR-ZB-SH-EU'],
|
|
527
|
+
model: 'RFPR-ZB-SH-EU',
|
|
528
|
+
vendor: 'Bosch',
|
|
529
|
+
description: 'Wireless motion detector',
|
|
530
|
+
fromZigbee: [fz.temperature, fz.battery, fz.ias_occupancy_alarm_1],
|
|
531
|
+
toZigbee: [],
|
|
532
|
+
meta: {battery: {voltageToPercentage: '3V_2500'}},
|
|
533
|
+
configure: async (device, coordinatorEndpoint, logger) => {
|
|
534
|
+
const endpoint = device.getEndpoint(1);
|
|
535
|
+
await reporting.bind(endpoint, coordinatorEndpoint, ['msTemperatureMeasurement', 'genPowerCfg']);
|
|
536
|
+
await reporting.temperature(endpoint);
|
|
537
|
+
await reporting.batteryVoltage(endpoint);
|
|
538
|
+
},
|
|
539
|
+
exposes: [e.temperature(), e.battery(), e.occupancy(), e.battery_low(), e.tamper()],
|
|
540
|
+
},
|
|
525
541
|
{
|
|
526
542
|
zigbeeModel: ['RBSH-SP-ZB-EU'],
|
|
527
543
|
model: 'BSP-FZ2',
|
package/devices/ikea.js
CHANGED
|
@@ -668,7 +668,6 @@ module.exports = [
|
|
|
668
668
|
'arrow_right_hold', 'arrow_left_release', 'arrow_right_release'])],
|
|
669
669
|
toZigbee: [tz.battery_percentage_remaining],
|
|
670
670
|
ota: ota.tradfri,
|
|
671
|
-
meta: {battery: {dontDividePercentage: true}},
|
|
672
671
|
configure: async (device, coordinatorEndpoint, logger) => {
|
|
673
672
|
// Binding genOnOff is not required to make device send events.
|
|
674
673
|
const endpoint = device.getEndpoint(1);
|
|
@@ -690,7 +689,7 @@ module.exports = [
|
|
|
690
689
|
],
|
|
691
690
|
toZigbee: [tz.battery_percentage_remaining],
|
|
692
691
|
ota: ota.tradfri,
|
|
693
|
-
meta: {disableActionGroup: true
|
|
692
|
+
meta: {disableActionGroup: true},
|
|
694
693
|
configure: configureRemote,
|
|
695
694
|
},
|
|
696
695
|
{
|
|
@@ -702,7 +701,7 @@ module.exports = [
|
|
|
702
701
|
exposes: [e.battery().withAccess(ea.STATE_GET), e.action(['on', 'off'])],
|
|
703
702
|
toZigbee: [tz.battery_percentage_remaining],
|
|
704
703
|
ota: ota.tradfri,
|
|
705
|
-
meta: {disableActionGroup: true
|
|
704
|
+
meta: {disableActionGroup: true},
|
|
706
705
|
configure: configureRemote,
|
|
707
706
|
},
|
|
708
707
|
{
|
|
@@ -729,7 +728,7 @@ module.exports = [
|
|
|
729
728
|
exposes: [e.battery().withAccess(ea.STATE_GET), e.action(['on', 'off', 'brightness_move_up', 'brightness_stop'])],
|
|
730
729
|
toZigbee: [tz.battery_percentage_remaining],
|
|
731
730
|
ota: ota.tradfri,
|
|
732
|
-
meta: {disableActionGroup: true
|
|
731
|
+
meta: {disableActionGroup: true},
|
|
733
732
|
configure: async (device, coordinatorEndpoint, logger) => {
|
|
734
733
|
// Binding genOnOff is not required to make device send events.
|
|
735
734
|
const endpoint = device.getEndpoint(1);
|
|
@@ -868,7 +867,6 @@ module.exports = [
|
|
|
868
867
|
fz.command_cover_stop, fz.legacy.cover_stop],
|
|
869
868
|
exposes: [e.battery().withAccess(ea.STATE_GET), e.action(['close', 'open', 'stop'])],
|
|
870
869
|
toZigbee: [tz.battery_percentage_remaining],
|
|
871
|
-
meta: {battery: {dontDividePercentage: true}},
|
|
872
870
|
ota: ota.tradfri,
|
|
873
871
|
configure: configureRemote,
|
|
874
872
|
},
|
package/devices/philips.js
CHANGED
|
@@ -3044,4 +3044,11 @@ module.exports = [
|
|
|
3044
3044
|
description: 'Hue Gradient light tube compact',
|
|
3045
3045
|
extend: philips.extend.light_onoff_brightness_colortemp_color_gradient({colorTempRange: [153, 500]}),
|
|
3046
3046
|
},
|
|
3047
|
+
{
|
|
3048
|
+
zigbeeModel: ['929003055701'],
|
|
3049
|
+
model: '929003055701',
|
|
3050
|
+
vendor: 'Philips',
|
|
3051
|
+
description: 'Hue White Ambiance Devote',
|
|
3052
|
+
extend: philips.extend.light_onoff_brightness_colortemp_color({colorTempRange: [153, 500]}),
|
|
3053
|
+
},
|
|
3047
3054
|
];
|
package/devices/zemismart.js
CHANGED
|
@@ -77,7 +77,7 @@ module.exports = [
|
|
|
77
77
|
},
|
|
78
78
|
},
|
|
79
79
|
{
|
|
80
|
-
fingerprint: [{modelID: 'TS0003', manufacturerName: '_TZ3000_vjhcenzo'}],
|
|
80
|
+
fingerprint: [{modelID: 'TS0003', manufacturerName: '_TZ3000_vjhcenzo'}, {modelID: 'TS0003', manufacturerName: '_TZ3000_f09j9qjb'}],
|
|
81
81
|
model: 'TB25',
|
|
82
82
|
vendor: 'Zemismart',
|
|
83
83
|
description: 'Smart light switch and socket - 2 gang with neutral wire',
|