zigbee-herdsman-converters 14.0.441 → 14.0.442
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/converters/fromZigbee.js +20 -0
- package/devices/legrand.js +3 -3
- package/devices/lixee.js +49 -22
- package/devices/philips.js +1 -1
- package/devices/schneider_electric.js +16 -0
- package/devices/tuya.js +1 -0
- package/devices/woox.js +20 -0
- package/npm-shrinkwrap.json +1 -1
- package/package.json +1 -1
package/converters/fromZigbee.js
CHANGED
|
@@ -1018,6 +1018,16 @@ const converters = {
|
|
|
1018
1018
|
};
|
|
1019
1019
|
},
|
|
1020
1020
|
},
|
|
1021
|
+
ias_alarm_only_alarm_1: {
|
|
1022
|
+
cluster: 'ssIasZone',
|
|
1023
|
+
type: 'attributeReport',
|
|
1024
|
+
convert: (model, msg, publish, options, meta) => {
|
|
1025
|
+
const zoneStatus = msg.data.zoneStatus;
|
|
1026
|
+
return {
|
|
1027
|
+
alarm: (zoneStatus & 1) > 0,
|
|
1028
|
+
};
|
|
1029
|
+
},
|
|
1030
|
+
},
|
|
1021
1031
|
ias_occupancy_only_alarm_2: {
|
|
1022
1032
|
cluster: 'ssIasZone',
|
|
1023
1033
|
type: 'commandStatusChangeNotification',
|
|
@@ -2595,6 +2605,16 @@ const converters = {
|
|
|
2595
2605
|
return result;
|
|
2596
2606
|
},
|
|
2597
2607
|
},
|
|
2608
|
+
ts0219_power_source: {
|
|
2609
|
+
cluster: 'genBasic',
|
|
2610
|
+
type: 'attributeReport',
|
|
2611
|
+
convert: (model, msg, publish, options, meta) => {
|
|
2612
|
+
const powerSource = msg.data.powerSource;
|
|
2613
|
+
return {
|
|
2614
|
+
ac_connected: powerSource === 2 ? true : false,
|
|
2615
|
+
};
|
|
2616
|
+
},
|
|
2617
|
+
},
|
|
2598
2618
|
tuya_cover_options: {
|
|
2599
2619
|
cluster: 'closuresWindowCovering',
|
|
2600
2620
|
type: ['attributeReport', 'readResponse'],
|
package/devices/legrand.js
CHANGED
|
@@ -332,13 +332,13 @@ module.exports = [
|
|
|
332
332
|
exposes.binary('led_when_on', ea.ALL, 'ON', 'OFF').withDescription('Enables the LED when the light is on')],
|
|
333
333
|
meta: {multiEndpoint: true},
|
|
334
334
|
configure: async (device, coordinatorEndpoint, logger) => {
|
|
335
|
-
const endpointLeft = device.getEndpoint(
|
|
335
|
+
const endpointLeft = device.getEndpoint(2);
|
|
336
336
|
await reporting.bind(endpointLeft, coordinatorEndpoint, ['genOnOff']);
|
|
337
|
-
const endpointRight = device.getEndpoint(
|
|
337
|
+
const endpointRight = device.getEndpoint(1);
|
|
338
338
|
await reporting.bind(endpointRight, coordinatorEndpoint, ['genOnOff']);
|
|
339
339
|
},
|
|
340
340
|
endpoint: (device) => {
|
|
341
|
-
return {left:
|
|
341
|
+
return {left: 2, right: 1};
|
|
342
342
|
},
|
|
343
343
|
},
|
|
344
344
|
];
|
package/devices/lixee.js
CHANGED
|
@@ -271,6 +271,30 @@ const tarifsDef = {
|
|
|
271
271
|
'PJOURF+1',
|
|
272
272
|
'PPOINTE1',
|
|
273
273
|
]},
|
|
274
|
+
stand_HPHC: {fname: 'Standard - Heure Pleine Heure Creuse',
|
|
275
|
+
currentTarf: 'H PLEINE/CREUSE', excluded: [
|
|
276
|
+
'EASF03',
|
|
277
|
+
'EASF04',
|
|
278
|
+
'EASF05',
|
|
279
|
+
'EASF06',
|
|
280
|
+
'EASF07',
|
|
281
|
+
'EASF08',
|
|
282
|
+
'EASF09',
|
|
283
|
+
'EASF10',
|
|
284
|
+
'EASD02',
|
|
285
|
+
'EASD03',
|
|
286
|
+
'EASD04',
|
|
287
|
+
'DPM1',
|
|
288
|
+
'DPM2',
|
|
289
|
+
'DPM3',
|
|
290
|
+
'FPM1',
|
|
291
|
+
'FPM2',
|
|
292
|
+
'FPM3',
|
|
293
|
+
'NJOURF',
|
|
294
|
+
'NJOURF+1',
|
|
295
|
+
'PJOURF+1',
|
|
296
|
+
'PPOINTE1',
|
|
297
|
+
]},
|
|
274
298
|
};
|
|
275
299
|
|
|
276
300
|
const linkyModeDef = {
|
|
@@ -301,16 +325,16 @@ const exposedData = [
|
|
|
301
325
|
{cluster: clustersDef._0x0702, att: 'currentSummDelivered', reportable: true, report: {change: 100}, onlyProducer: false, linkyPhase: linkyPhaseDef.all, linkyMode: linkyModeDef.legacy, exposes: exposes.numeric('BASE', ea.STATE).withUnit('kWh').withProperty('current_summ_delivered').withDescription('Base index')},
|
|
302
326
|
{cluster: clustersDef._0xFF66, att: 'currentTarif', reportable: false, onlyProducer: false, linkyPhase: linkyPhaseDef.all, linkyMode: linkyModeDef.legacy, exposes: exposes.text('OPTARIF', ea.STATE).withProperty('current_tarif').withDescription('Tarif option')},
|
|
303
327
|
{cluster: clustersDef._0x0B01, att: 'availablePower', reportable: false, onlyProducer: false, linkyPhase: linkyPhaseDef.all, linkyMode: linkyModeDef.legacy, exposes: exposes.numeric('ISOUSC', ea.STATE).withUnit('A').withProperty('available_power').withDescription('Subscribed intensity level')},
|
|
304
|
-
{cluster: clustersDef._0x0702, att: 'currentTier1SummDelivered', reportable: false, report: {change: 100}, onlyProducer: false, linkyPhase: linkyPhaseDef.
|
|
305
|
-
{cluster: clustersDef._0x0702, att: 'currentTier2SummDelivered', reportable: false, report: {change: 100}, onlyProducer: false, linkyPhase: linkyPhaseDef.
|
|
306
|
-
{cluster: clustersDef._0x0702, att: 'currentTier1SummDelivered', reportable: false, report: {change: 100}, onlyProducer: false, linkyPhase: linkyPhaseDef.
|
|
307
|
-
{cluster: clustersDef._0x0702, att: 'currentTier2SummDelivered', reportable: false, report: {change: 100}, onlyProducer: false, linkyPhase: linkyPhaseDef.
|
|
308
|
-
{cluster: clustersDef._0x0702, att: 'currentTier1SummDelivered', reportable: false, report: {change: 100}, onlyProducer: false, linkyPhase: linkyPhaseDef.
|
|
309
|
-
{cluster: clustersDef._0x0702, att: 'currentTier2SummDelivered', reportable: false, report: {change: 100}, onlyProducer: false, linkyPhase: linkyPhaseDef.
|
|
310
|
-
{cluster: clustersDef._0x0702, att: 'currentTier3SummDelivered', reportable: false, report: {change: 100}, onlyProducer: false, linkyPhase: linkyPhaseDef.
|
|
311
|
-
{cluster: clustersDef._0x0702, att: 'currentTier4SummDelivered', reportable: false, report: {change: 100}, onlyProducer: false, linkyPhase: linkyPhaseDef.
|
|
312
|
-
{cluster: clustersDef._0x0702, att: 'currentTier5SummDelivered', reportable: false, report: {change: 100}, onlyProducer: false, linkyPhase: linkyPhaseDef.
|
|
313
|
-
{cluster: clustersDef._0x0702, att: 'currentTier6SummDelivered', reportable: false, report: {change: 100}, onlyProducer: false, linkyPhase: linkyPhaseDef.
|
|
328
|
+
{cluster: clustersDef._0x0702, att: 'currentTier1SummDelivered', reportable: false, report: {change: 100}, onlyProducer: false, linkyPhase: linkyPhaseDef.all, linkyMode: linkyModeDef.legacy, exposes: exposes.numeric('HCHC', ea.STATE).withUnit('kWh').withProperty('current_tier1_summ_delivered').withDescription('HCHC index')},
|
|
329
|
+
{cluster: clustersDef._0x0702, att: 'currentTier2SummDelivered', reportable: false, report: {change: 100}, onlyProducer: false, linkyPhase: linkyPhaseDef.all, linkyMode: linkyModeDef.legacy, exposes: exposes.numeric('HCHP', ea.STATE).withUnit('kWh').withProperty('current_tier2_summ_delivered').withDescription('HCHP index')},
|
|
330
|
+
{cluster: clustersDef._0x0702, att: 'currentTier1SummDelivered', reportable: false, report: {change: 100}, onlyProducer: false, linkyPhase: linkyPhaseDef.all, linkyMode: linkyModeDef.legacy, exposes: exposes.numeric('EJPHN', ea.STATE).withUnit('kWh').withProperty('current_tier1_summ_delivered').withDescription('EJPHN index')},
|
|
331
|
+
{cluster: clustersDef._0x0702, att: 'currentTier2SummDelivered', reportable: false, report: {change: 100}, onlyProducer: false, linkyPhase: linkyPhaseDef.all, linkyMode: linkyModeDef.legacy, exposes: exposes.numeric('EJPHPM', ea.STATE).withUnit('kWh').withProperty('current_tier2_summ_delivered').withDescription('EJPHPM index')},
|
|
332
|
+
{cluster: clustersDef._0x0702, att: 'currentTier1SummDelivered', reportable: false, report: {change: 100}, onlyProducer: false, linkyPhase: linkyPhaseDef.all, linkyMode: linkyModeDef.legacy, exposes: exposes.numeric('BBRHCJB', ea.STATE).withUnit('kWh').withProperty('current_tier1_summ_delivered').withDescription('BBRHCJB index')},
|
|
333
|
+
{cluster: clustersDef._0x0702, att: 'currentTier2SummDelivered', reportable: false, report: {change: 100}, onlyProducer: false, linkyPhase: linkyPhaseDef.all, linkyMode: linkyModeDef.legacy, exposes: exposes.numeric('BBRHPJB', ea.STATE).withUnit('kWh').withProperty('current_tier2_summ_delivered').withDescription('BBRHPJB index')},
|
|
334
|
+
{cluster: clustersDef._0x0702, att: 'currentTier3SummDelivered', reportable: false, report: {change: 100}, onlyProducer: false, linkyPhase: linkyPhaseDef.all, linkyMode: linkyModeDef.legacy, exposes: exposes.numeric('BBRHCJW', ea.STATE).withUnit('kWh').withProperty('current_tier3_summ_delivered').withDescription('BBRHCJW index')},
|
|
335
|
+
{cluster: clustersDef._0x0702, att: 'currentTier4SummDelivered', reportable: false, report: {change: 100}, onlyProducer: false, linkyPhase: linkyPhaseDef.all, linkyMode: linkyModeDef.legacy, exposes: exposes.numeric('BBRHPJW', ea.STATE).withUnit('kWh').withProperty('current_tier4_summ_delivered').withDescription('BBRHPJW index')},
|
|
336
|
+
{cluster: clustersDef._0x0702, att: 'currentTier5SummDelivered', reportable: false, report: {change: 100}, onlyProducer: false, linkyPhase: linkyPhaseDef.all, linkyMode: linkyModeDef.legacy, exposes: exposes.numeric('BBRHCJR', ea.STATE).withUnit('kWh').withProperty('current_tier5_summ_delivered').withDescription('BBRHCJR index')},
|
|
337
|
+
{cluster: clustersDef._0x0702, att: 'currentTier6SummDelivered', reportable: false, report: {change: 100}, onlyProducer: false, linkyPhase: linkyPhaseDef.all, linkyMode: linkyModeDef.legacy, exposes: exposes.numeric('BBRHPJR', ea.STATE).withUnit('kWh').withProperty('current_tier6_summ_delivered').withDescription('BBRHPJR index')},
|
|
314
338
|
{cluster: clustersDef._0x0B04, att: 'rmsCurrent', reportable: true, onlyProducer: false, linkyPhase: linkyPhaseDef.single, linkyMode: linkyModeDef.legacy, exposes: exposes.numeric('IINST', ea.STATE).withUnit('A').withProperty('rms_current').withDescription('RMS current')},
|
|
315
339
|
{cluster: clustersDef._0x0B04, att: 'rmsCurrent', reportable: true, onlyProducer: false, linkyPhase: linkyPhaseDef.three, linkyMode: linkyModeDef.legacy, exposes: exposes.numeric('IINST1', ea.STATE).withUnit('A').withProperty('rms_current').withDescription('RMS current (phase 1)')},
|
|
316
340
|
{cluster: clustersDef._0x0B04, att: 'rmsCurrentPhB', reportable: true, onlyProducer: false, linkyPhase: linkyPhaseDef.three, linkyMode: linkyModeDef.legacy, exposes: exposes.numeric('IINST2', ea.STATE).withUnit('A').withProperty('rms_current_ph_b').withDescription('RMS current (phase 2)')},
|
|
@@ -336,7 +360,7 @@ const exposedData = [
|
|
|
336
360
|
{cluster: clustersDef._0xFF66, att: 'currentIndexTarif', reportable: false, onlyProducer: false, linkyPhase: linkyPhaseDef.all, linkyMode: linkyModeDef.standard, exposes: exposes.numeric('NTARF', ea.STATE).withProperty('current_index_tarif').withDescription('Current tariff index number')},
|
|
337
361
|
{cluster: clustersDef._0x0B01, att: 'softwareRevision', reportable: false, onlyProducer: false, linkyPhase: linkyPhaseDef.all, linkyMode: linkyModeDef.standard, exposes: exposes.numeric('VTIC', ea.STATE).withProperty('software_revision').withDescription('Customer tele-information protocol version')},
|
|
338
362
|
{cluster: clustersDef._0xFF66, att: 'currentDate', reportable: false, onlyProducer: false, linkyPhase: linkyPhaseDef.all, linkyMode: linkyModeDef.standard, exposes: exposes.text('DATE', ea.STATE).withProperty('current_date').withDescription('Current date and time')},
|
|
339
|
-
{cluster: clustersDef._0x0702, att: 'currentSummDelivered', reportable: true, report: {change: 100}, onlyProducer: false, linkyPhase: linkyPhaseDef.
|
|
363
|
+
{cluster: clustersDef._0x0702, att: 'currentSummDelivered', reportable: true, report: {change: 100}, onlyProducer: false, linkyPhase: linkyPhaseDef.all, linkyMode: linkyModeDef.standard, exposes: exposes.numeric('EAST', ea.STATE).withUnit('kWh').withProperty('current_summ_delivered').withDescription('Total active power delivered')},
|
|
340
364
|
{cluster: clustersDef._0x0702, att: 'currentTier1SummDelivered', reportable: true, report: {change: 100}, onlyProducer: false, linkyPhase: linkyPhaseDef.all, linkyMode: linkyModeDef.standard, exposes: exposes.numeric('EASF01', ea.STATE).withUnit('kWh').withProperty('current_tier1_summ_delivered').withDescription('Total provider active power delivered (index 01)')},
|
|
341
365
|
{cluster: clustersDef._0x0702, att: 'currentTier2SummDelivered', reportable: true, report: {change: 100}, onlyProducer: false, linkyPhase: linkyPhaseDef.all, linkyMode: linkyModeDef.standard, exposes: exposes.numeric('EASF02', ea.STATE).withUnit('kWh').withProperty('current_tier2_summ_delivered').withDescription('Total provider active power delivered (index 02)')},
|
|
342
366
|
{cluster: clustersDef._0x0702, att: 'currentTier3SummDelivered', reportable: true, report: {change: 100}, onlyProducer: false, linkyPhase: linkyPhaseDef.all, linkyMode: linkyModeDef.standard, exposes: exposes.numeric('EASF03', ea.STATE).withUnit('kWh').withProperty('current_tier3_summ_delivered').withDescription('Total provider active power delivered (index 03)')},
|
|
@@ -390,17 +414,17 @@ const exposedData = [
|
|
|
390
414
|
{cluster: clustersDef._0xFF66, att: 'message1', reportable: false, onlyProducer: false, linkyPhase: linkyPhaseDef.all, linkyMode: linkyModeDef.standard, exposes: exposes.text('MSG1', ea.STATE).withProperty('message1').withDescription('Message short')},
|
|
391
415
|
{cluster: clustersDef._0xFF66, att: 'message2', reportable: false, onlyProducer: false, linkyPhase: linkyPhaseDef.all, linkyMode: linkyModeDef.standard, exposes: exposes.text('MSG2', ea.STATE).withProperty('message2').withDescription('Message ultra-short')},
|
|
392
416
|
{cluster: clustersDef._0x0702, att: 'siteId', reportable: false, onlyProducer: false, linkyPhase: linkyPhaseDef.all, linkyMode: linkyModeDef.standard, exposes: exposes.text('PRM', ea.STATE).withProperty('site_id').withDescription('PRM number')},
|
|
393
|
-
{cluster: clustersDef._0xFF66, att: 'startMobilePoint1', reportable: false, onlyProducer: false, linkyPhase: linkyPhaseDef.
|
|
394
|
-
{cluster: clustersDef._0xFF66, att: 'stopMobilePoint1', reportable: false, onlyProducer: false, linkyPhase: linkyPhaseDef.
|
|
395
|
-
{cluster: clustersDef._0xFF66, att: 'startMobilePoint2', reportable: false, onlyProducer: false, linkyPhase: linkyPhaseDef.
|
|
396
|
-
{cluster: clustersDef._0xFF66, att: 'stopMobilePoint2', reportable: false, onlyProducer: false, linkyPhase: linkyPhaseDef.
|
|
397
|
-
{cluster: clustersDef._0xFF66, att: 'startMobilePoint3', reportable: false, onlyProducer: false, linkyPhase: linkyPhaseDef.
|
|
398
|
-
{cluster: clustersDef._0xFF66, att: 'stopMobilePoint3', reportable: false, onlyProducer: false, linkyPhase: linkyPhaseDef.
|
|
399
|
-
{cluster: clustersDef._0xFF66, att: 'relais', reportable: false, onlyProducer: false, linkyPhase: linkyPhaseDef.
|
|
400
|
-
{cluster: clustersDef._0xFF66, att: 'daysNumberCurrentCalendar', reportable: false, onlyProducer: false, linkyPhase: linkyPhaseDef.
|
|
401
|
-
{cluster: clustersDef._0xFF66, att: 'daysNumberNextCalendar', reportable: false, onlyProducer: false, linkyPhase: linkyPhaseDef.
|
|
402
|
-
{cluster: clustersDef._0xFF66, att: 'daysProfileCurrentCalendar', reportable: false, onlyProducer: false, linkyPhase: linkyPhaseDef.
|
|
403
|
-
{cluster: clustersDef._0xFF66, att: 'daysProfileNextCalendar', reportable: false, onlyProducer: false, linkyPhase: linkyPhaseDef.
|
|
417
|
+
{cluster: clustersDef._0xFF66, att: 'startMobilePoint1', reportable: false, onlyProducer: false, linkyPhase: linkyPhaseDef.all, linkyMode: linkyModeDef.standard, exposes: exposes.numeric('DPM1', ea.STATE).withProperty('start_mobile_point1').withDescription('Start mobile point 1')},
|
|
418
|
+
{cluster: clustersDef._0xFF66, att: 'stopMobilePoint1', reportable: false, onlyProducer: false, linkyPhase: linkyPhaseDef.all, linkyMode: linkyModeDef.standard, exposes: exposes.numeric('FPM1', ea.STATE).withProperty('stop_mobile_point1').withDescription('Stop mobile point 1')},
|
|
419
|
+
{cluster: clustersDef._0xFF66, att: 'startMobilePoint2', reportable: false, onlyProducer: false, linkyPhase: linkyPhaseDef.all, linkyMode: linkyModeDef.standard, exposes: exposes.numeric('DPM2', ea.STATE).withProperty('start_mobile_point2').withDescription('Start mobile point 2')},
|
|
420
|
+
{cluster: clustersDef._0xFF66, att: 'stopMobilePoint2', reportable: false, onlyProducer: false, linkyPhase: linkyPhaseDef.all, linkyMode: linkyModeDef.standard, exposes: exposes.numeric('FPM2', ea.STATE).withProperty('stop_mobile_point2').withDescription('Stop mobile point 2')},
|
|
421
|
+
{cluster: clustersDef._0xFF66, att: 'startMobilePoint3', reportable: false, onlyProducer: false, linkyPhase: linkyPhaseDef.all, linkyMode: linkyModeDef.standard, exposes: exposes.numeric('DPM3', ea.STATE).withProperty('start_mobile_point3').withDescription('Start mobile point 3')},
|
|
422
|
+
{cluster: clustersDef._0xFF66, att: 'stopMobilePoint3', reportable: false, onlyProducer: false, linkyPhase: linkyPhaseDef.all, linkyMode: linkyModeDef.standard, exposes: exposes.numeric('FPM3', ea.STATE).withProperty('stop_mobile_point3').withDescription('Stop mobile point 3')},
|
|
423
|
+
{cluster: clustersDef._0xFF66, att: 'relais', reportable: false, onlyProducer: false, linkyPhase: linkyPhaseDef.all, linkyMode: linkyModeDef.standard, exposes: exposes.numeric('RELAIS', ea.STATE).withProperty('relais')},
|
|
424
|
+
{cluster: clustersDef._0xFF66, att: 'daysNumberCurrentCalendar', reportable: false, onlyProducer: false, linkyPhase: linkyPhaseDef.all, linkyMode: linkyModeDef.standard, exposes: exposes.numeric('NJOURF', ea.STATE).withProperty('days_number_current_calendar').withDescription('Current day number supplier calendar')},
|
|
425
|
+
{cluster: clustersDef._0xFF66, att: 'daysNumberNextCalendar', reportable: false, onlyProducer: false, linkyPhase: linkyPhaseDef.all, linkyMode: linkyModeDef.standard, exposes: exposes.numeric('NJOURF+1', ea.STATE).withProperty('days_number_next_calendar').withDescription('Next day number supplier calendar')},
|
|
426
|
+
{cluster: clustersDef._0xFF66, att: 'daysProfileCurrentCalendar', reportable: false, onlyProducer: false, linkyPhase: linkyPhaseDef.all, linkyMode: linkyModeDef.standard, exposes: exposes.text('PJOURF+1', ea.STATE).withProperty('days_profile_current_calendar').withDescription('Profile of the next supplier calendar day')},
|
|
427
|
+
{cluster: clustersDef._0xFF66, att: 'daysProfileNextCalendar', reportable: false, onlyProducer: false, linkyPhase: linkyPhaseDef.all, linkyMode: linkyModeDef.standard, exposes: exposes.text('PPOINTE1', ea.STATE).withProperty('days_profile_next_calendar').withDescription('Profile of the next check-in day')},
|
|
404
428
|
];
|
|
405
429
|
|
|
406
430
|
function getCurrentConfig(device, options, logger=console) {
|
|
@@ -478,6 +502,9 @@ function getCurrentConfig(device, options, logger=console) {
|
|
|
478
502
|
case linkyMode == linkyModeDef.standard && tarifsDef.stand_SEM_WE_MERCR.currentTarf:
|
|
479
503
|
myExpose = myExpose.filter((a) => !tarifsDef.stand_SEM_WE_MERCR.excluded.includes(a.exposes.name));
|
|
480
504
|
break;
|
|
505
|
+
case linkyMode == linkyModeDef.standard && tarifsDef.stand_HPHC.currentTarf:
|
|
506
|
+
myExpose = myExpose.filter((a) => !tarifsDef.stand_HPHC.excluded.includes(a.exposes.name));
|
|
507
|
+
break;
|
|
481
508
|
default:
|
|
482
509
|
break;
|
|
483
510
|
}
|
package/devices/philips.js
CHANGED
|
@@ -353,7 +353,7 @@ module.exports = [
|
|
|
353
353
|
model: '929003055901',
|
|
354
354
|
vendor: 'Philips',
|
|
355
355
|
description: 'Hue white ambiance bathroom ceiling light Adore with Bluetooth',
|
|
356
|
-
extend: extend.
|
|
356
|
+
extend: extend.light_onoff_brightness_colortemp({colorTempRange: [153, 454]}),
|
|
357
357
|
ota: ota.zigbeeOTA,
|
|
358
358
|
},
|
|
359
359
|
{
|
|
@@ -678,4 +678,20 @@ module.exports = [
|
|
|
678
678
|
await endpoint37.read('msOccupancySensing', ['pirOToUDelay']);
|
|
679
679
|
},
|
|
680
680
|
},
|
|
681
|
+
{
|
|
682
|
+
zigbeeModel: ['CCT595011_AS'],
|
|
683
|
+
model: 'CCT595011_AS',
|
|
684
|
+
vendor: 'Schneider Electric',
|
|
685
|
+
description: 'Wiser motion sensor',
|
|
686
|
+
fromZigbee: [fz.battery, fz.ias_enroll, fz.ias_occupancy_only_alarm_2, fz.illuminance],
|
|
687
|
+
toZigbee: [],
|
|
688
|
+
configure: async (device, coordinatorEndpoint, logger) => {
|
|
689
|
+
const endpoint = device.getEndpoint(1);
|
|
690
|
+
const binds = ['genPowerCfg', 'msIlluminanceMeasurement'];
|
|
691
|
+
await reporting.bind(endpoint, coordinatorEndpoint, binds);
|
|
692
|
+
await reporting.batteryPercentageRemaining(endpoint);
|
|
693
|
+
await reporting.illuminance(endpoint, {min: 15, max: constants.repInterval.HOUR, change: 500});
|
|
694
|
+
},
|
|
695
|
+
exposes: [e.battery(), e.illuminance(), e.illuminance_lux(), e.occupancy()],
|
|
696
|
+
},
|
|
681
697
|
];
|
package/devices/tuya.js
CHANGED
|
@@ -399,6 +399,7 @@ module.exports = [
|
|
|
399
399
|
{modelID: 'TS0601', manufacturerName: '_TZE200_ojzhk75b'},
|
|
400
400
|
{modelID: 'TS0601', manufacturerName: '_TZE200_swaamsoy'},
|
|
401
401
|
{modelID: 'TS0601', manufacturerName: '_TZE200_3p5ydos3'},
|
|
402
|
+
{modelID: 'TS0601', manufacturerName: '_TZE200_1agwnems'},
|
|
402
403
|
],
|
|
403
404
|
model: 'TS0601_dimmer',
|
|
404
405
|
vendor: 'TuYa',
|
package/devices/woox.js
CHANGED
|
@@ -5,6 +5,7 @@ const tz = require('../converters/toZigbee');
|
|
|
5
5
|
const tuya = require('../lib/tuya');
|
|
6
6
|
const extend = require('../lib/extend');
|
|
7
7
|
const e = exposes.presets;
|
|
8
|
+
const ea = exposes.access;
|
|
8
9
|
|
|
9
10
|
module.exports = [
|
|
10
11
|
{
|
|
@@ -54,4 +55,23 @@ module.exports = [
|
|
|
54
55
|
onEvent: tuya.onEventsetTime,
|
|
55
56
|
exposes: [e.smoke(), e.battery_low()],
|
|
56
57
|
},
|
|
58
|
+
{
|
|
59
|
+
fingerprint: [{modelID: 'TS0219', manufacturerName: '_TYZB01_ynsiasng'}],
|
|
60
|
+
model: 'R7051',
|
|
61
|
+
vendor: 'Woox',
|
|
62
|
+
description: 'Smart siren',
|
|
63
|
+
fromZigbee: [fz.battery, fz.ts0216_siren, fz.ias_alarm_only_alarm_1, fz.ts0219_power_source],
|
|
64
|
+
toZigbee: [tz.warning, tz.ts0216_volume],
|
|
65
|
+
exposes: [e.battery(), e.battery_voltage(), e.warning(), exposes.binary('alarm', ea.STATE, true, false),
|
|
66
|
+
exposes.binary('ac_connected', ea.STATE, true, false).withDescription('Is the device plugged in'),
|
|
67
|
+
exposes.numeric('volume', ea.ALL).withValueMin(0).withValueMax(100).withDescription('Volume of siren')],
|
|
68
|
+
meta: {disableDefaultResponse: true},
|
|
69
|
+
configure: async (device, coordinatorEndpoint) => {
|
|
70
|
+
const endpoint = device.getEndpoint(1);
|
|
71
|
+
const bindClusters = ['genPowerCfg'];
|
|
72
|
+
await reporting.bind(endpoint, coordinatorEndpoint, bindClusters);
|
|
73
|
+
await reporting.batteryVoltage(endpoint);
|
|
74
|
+
await reporting.batteryPercentageRemaining(endpoint);
|
|
75
|
+
},
|
|
76
|
+
},
|
|
57
77
|
];
|
package/npm-shrinkwrap.json
CHANGED