forked from dresden-elektronik/deconz-rest-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxiaomi.cpp
1015 lines (924 loc) · 36 KB
/
xiaomi.cpp
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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#include <math.h>
#include "de_web_plugin.h"
#include "de_web_plugin_private.h"
#include "utils/utils.h"
#include "xiaomi.h"
/*! Handle packets related to the Xiaomi/Lumi FCC0 cluster.
\param ind the APS level data indication containing the ZCL packet
\param zclFrame the actual ZCL frame which holds the Xiaomi/Lumi FCC0 cluster command or attribute
*/
void DeRestPluginPrivate::handleXiaomiLumiClusterIndication(const deCONZ::ApsDataIndication &ind, deCONZ::ZclFrame &zclFrame)
{
if (zclFrame.isDefaultResponse())
{
return;
}
QDataStream stream(zclFrame.payload());
stream.setByteOrder(QDataStream::LittleEndian);
bool isReadAttr = false;
bool isReporting = false;
if (zclFrame.isProfileWideCommand() && zclFrame.commandId() == deCONZ::ZclReadAttributesResponseId)
{
isReadAttr = true;
}
if (zclFrame.isProfileWideCommand() && zclFrame.commandId() == deCONZ::ZclReportAttributesId)
{
isReporting = true;
}
// Read ZCL reporting and ZCL Read Attributes Response
if (isReadAttr || isReporting)
{
const NodeValue::UpdateType updateType = isReadAttr ? NodeValue::UpdateByZclRead : NodeValue::UpdateByZclReport;
// bool configUpdated = false;
// bool stateUpdated = false;
while (!stream.atEnd())
{
quint16 attrId;
quint8 attrTypeId;
stream >> attrId;
if (isReadAttr)
{
quint8 status;
stream >> status; // Read Attribute Response status
if (status != deCONZ::ZclSuccessStatus)
{
continue;
}
}
stream >> attrTypeId;
deCONZ::ZclAttribute attr(attrId, attrTypeId, QLatin1String(""), deCONZ::ZclRead, false);
if (!attr.readFromStream(stream))
{
continue;
}
switch (attrId)
{
case XIAOMI_ATTRID_SPECIAL_REPORT:
{
handleZclAttributeReportIndicationXiaomiSpecial(ind, zclFrame);
}
break;
case XIAOMI_ATTRID_DEVICE_MODE:
{
}
break;
case XIAOMI_ATTRID_MOTION_SENSITIVITY:
{
Sensor *sensor = getSensorNodeForAddressEndpointAndCluster(ind.srcAddress(), ind.srcEndpoint(), XIAOMI_CLUSTER_ID);
if (sensor)
{
sensor->setZclValue(updateType, ind.srcEndpoint(), XIAOMI_CLUSTER_ID, XIAOMI_ATTRID_MOTION_SENSITIVITY, attr.numericValue());
quint8 sensitivity = attr.numericValue().u8;
sensor->setValue(RConfigSensitivity, sensitivity);
}
}
break;
case XIAOMI_ATTRID_P1_MOTION_DETECTION:
{
// Workaround to set P1 presence sensor back to unoccupied, as the pure reception of this report is considered
// as presence = true state, but this is not reset by the device automatically. Ideally, deCONZ will have some timers
// for such cases available in future.
Sensor *sensor = getSensorNodeForAddressAndEndpoint(ind.srcAddress(), ind.srcEndpoint());
if (sensor)
{
bool occupancy = true;
ResourceItem *item = nullptr;
item = sensor->item(RStatePresence);
if (item)
{
item->setValue(occupancy);
enqueueEvent(Event(RSensors, RStatePresence, sensor->id(), item));
ResourceItem *item2 = nullptr;
item2 = sensor->item(RConfigDuration);
if (item2 && item2->toNumber() > 0)
{
// As unoccupied state is not reportable, add duration seconds after a occupied = true to automatically set to false
sensor->durationDue = item->lastSet().addSecs(item2->toNumber());
}
}
deCONZ::NumericUnion occ;
occ.u64 = occupancy;
sensor->setZclValue(updateType, ind.srcEndpoint(), OCCUPANCY_SENSING_CLUSTER_ID, XIAOMI_ATTRID_P1_MOTION_DETECTION, occ);
sensor->updateStateTimestamp();
enqueueEvent(Event(RSensors, RStateLastUpdated, sensor->id()));
updateSensorEtag(&*sensor);
sensor->setNeedSaveDatabase(true);
queSaveDb(DB_SENSORS, DB_SHORT_SAVE_DELAY);
}
}
break;
case XIAOMI_ATTRID_SPEED:
{
LightNode *lightNode = getLightNodeForAddress(ind.srcAddress(), ind.srcEndpoint());
if (lightNode)
{
lightNode->setZclValue(updateType, ind.srcEndpoint(), XIAOMI_CLUSTER_ID, XIAOMI_ATTRID_SPEED, attr.numericValue());
quint8 speed = attr.numericValue().u8;
lightNode->setValue(RStateSpeed, speed);
}
}
break;
case XIAOMI_ATTRID_CHARGING:
{
Sensor *sensor = getSensorNodeForAddressEndpointAndCluster(ind.srcAddress(), ind.srcEndpoint(), XIAOMI_CLUSTER_ID);
if (sensor)
{
sensor->setZclValue(updateType, ind.srcEndpoint(), XIAOMI_CLUSTER_ID, XIAOMI_ATTRID_CHARGING, attr.numericValue());
bool charging = attr.numericValue().u8 == 1;
sensor->setValue(RStateCharging, charging);
}
}
break;
default:
break;
}
}
}
}
/*! Handle manufacturer specific Xiaomi ZCL attribute report commands to basic cluster.
*/
void DeRestPluginPrivate::handleZclAttributeReportIndicationXiaomiSpecial(const deCONZ::ApsDataIndication &ind, deCONZ::ZclFrame &zclFrame)
{
if (ind.srcAddress().hasExt())
{
Device *device = DEV_GetDevice(m_devices, ind.srcAddress().ext());
if (device)
{
enqueueEvent(Event(device->prefix(), REventAwake, 0, device->key()));
if (device->managed())
{
return;
}
}
}
quint16 attrId = 0;
quint8 dataType = 0;
quint8 length = 0;
QDataStream stream(zclFrame.payload());
stream.setByteOrder(QDataStream::LittleEndian);
stream.setFloatingPointPrecision(QDataStream::SinglePrecision);
while (attrId == 0)
{
if (stream.atEnd())
{
break;
}
quint16 a;
stream >> a;
stream >> dataType;
if (dataType == deCONZ::ZclCharacterString || dataType == deCONZ::ZclOctedString)
{
stream >> length;
}
if (a == 0xff01 && dataType == deCONZ::ZclCharacterString)
{
attrId = a;
}
else if (a == 0xff02 && dataType == 0x4c /*deCONZ::ZclStruct*/)
{
attrId = a;
}
else if (a == 0x00f7 && dataType == deCONZ::ZclOctedString)
{
attrId = a;
}
if (dataType == deCONZ::ZclCharacterString && attrId != 0xff01)
{
DBG_Printf(DBG_INFO_L2, "0x%016llX skip Xiaomi attribute 0x%04X\n", ind.srcAddress().ext(), attrId);
for (; length > 0; length--) // skip
{
quint8 dummy;
stream >> dummy;
}
}
}
if (stream.atEnd() || attrId == 0)
{
return;
}
quint8 structIndex = 0; // only attribute id 0xff02
quint16 structSize = 0; // only attribute id 0xff02
quint8 batteryPercentage = UINT8_MAX;
quint16 battery = 0;
quint8 charging = UINT8_MAX;
quint32 lightlevel = UINT32_MAX; // use 32-bit to mark invalid and support 0xffff value
qint16 temperature = INT16_MIN;
quint16 humidity = UINT16_MAX;
qint16 pressure = INT16_MIN;
quint8 onOff = UINT8_MAX;
quint8 onOff2 = UINT8_MAX;
quint8 lift = UINT8_MAX;
quint32 power = UINT32_MAX;
quint32 consumption = UINT32_MAX;
quint32 current = UINT32_MAX;
quint32 voltage = UINT32_MAX;
QString firmware;
DBG_Printf(DBG_INFO, "0x%016llX extract Xiaomi special attribute 0x%04X\n", ind.srcAddress().ext(), attrId);
QString dateCode;
while (!stream.atEnd())
{
qint8 s8;
qint16 s16;
quint8 u8;
quint16 u16;
qint32 s32;
quint32 u32;
quint64 u64;
float f;
quint8 tag = 0;
if (attrId == 0xff01 || attrId == 0x00f7)
{
stream >> tag;
}
else if (attrId == 0xff02)
{
if (structIndex == 0)
{
stream >> structSize; // number of elements
}
structIndex++;
}
stream >> dataType;
switch (dataType)
{
case deCONZ::ZclBoolean: stream >> u8; break;
case deCONZ::Zcl8BitInt: stream >> s8; break;
case deCONZ::Zcl8BitUint: stream >> u8; break;
case deCONZ::Zcl16BitInt: stream >> s16; break;
case deCONZ::Zcl16BitUint: stream >> u16; break;
case deCONZ::Zcl32BitInt: stream >> s32; break;
case deCONZ::Zcl32BitUint: stream >> u32; break;
case deCONZ::Zcl40BitUint:
u64 = 0;
for (int i = 0; i < 5; i++)
{
u64 <<= 8;
stream >> u8;
u64 |= u8;
}
break;
case deCONZ::Zcl48BitUint:
u64 = 0;
for (int i = 0; i < 6; i++)
{
u64 <<= 8;
stream >> u8;
u64 |= u8;
}
break;
case deCONZ::Zcl64BitUint: stream >> u64; break;
case deCONZ::ZclSingleFloat: stream >> f; break;
default:
{
DBG_Printf(DBG_INFO, "\tUnsupported datatype 0x%02X (tag 0x%02X)\n", dataType, tag);
}
return;
}
if ((tag == 0x01 || structIndex == 0x02) && dataType == deCONZ::Zcl16BitUint)
{
DBG_Printf(DBG_INFO, "\t01 battery %u (0x%04X)\n", u16, u16);
battery = u16;
}
else if (tag == 0x03 && dataType == deCONZ::Zcl8BitInt)
{
DBG_Printf(DBG_INFO, "\t03 Device temperature %d °C\n", int(s8)); // Device temperature for lumi.plug.mmeu01
temperature = qint16(s8) * 100;
}
else if ((tag == 0x04 || structIndex == 0x03) && dataType == deCONZ::Zcl16BitUint)
{
DBG_Printf(DBG_INFO, "\t04 unknown %u (0x%04X)\n", u16, u16);
}
else if (tag == 0x05 && dataType == deCONZ::Zcl16BitUint)
{
DBG_Printf(DBG_INFO, "\t05 RSSI dB (?) %u (0x%04X)\n", u16, u16); // Power outages for lumi.plug.mmeu01
}
else if ((tag == 0x06 || structIndex == 0x04) && dataType == deCONZ::Zcl40BitUint)
{
DBG_Printf(DBG_INFO, "\t06 LQI (?) %llu (0x%010llX)\n", u64, u64);
}
else if (tag == 0x07 && dataType == deCONZ::Zcl64BitUint) // lumi.ctrl_ln2
{
DBG_Printf(DBG_INFO, "\t07 unknown %llu (0x%016llX)\n", u64, u64);
}
else if (tag == 0x08 && dataType == deCONZ::Zcl16BitUint) // lumi.ctrl_ln2
{
DBG_Printf(DBG_INFO, "\t08 unknown %u (0x%04X)\n", u16, u16);
}
else if (tag == 0x09 && dataType == deCONZ::Zcl16BitUint) // lumi.ctrl_ln2
{
DBG_Printf(DBG_INFO, "\t09 unknown %u (0x%04X)\n", u16, u16);
}
else if (tag == 0x0a && dataType == deCONZ::Zcl16BitUint) // lumi.vibration.aq1
{
DBG_Printf(DBG_INFO, "\t0a Parent NWK %u (0x%04X)\n", u16, u16);
}
else if (tag == 0x0b && dataType == deCONZ::Zcl16BitUint)
{
DBG_Printf(DBG_INFO, "\t0b lightlevel %u (0x%04X)\n", u16, u16);
lightlevel = u16;
}
else if (tag == 0x0b && dataType == deCONZ::Zcl8BitUint)
{
DBG_Printf(DBG_INFO, "\t0b unknown %u (0x%02X)\n", u8, u8);
}
else if (tag == 0x0c && dataType == deCONZ::Zcl8BitUint) // lumi.remote.b28ac1
{
DBG_Printf(DBG_INFO, "\t0c unknown %u (0x%02X)\n", u8, u8);
}
else if (tag == 0x0d && dataType == deCONZ::Zcl32BitUint) // lumi.switch.n2aeu1
{
firmware = QString("%1.%2.%3_%4%5")
.arg((u32 & 0xF0000000) >> 28)
.arg((u32 & 0x0F000000) >> 24)
.arg((u32 & 0x00FF0000) >> 16)
.arg((u32 & 0x0000FF00) >> 8)
.arg(u32 & 0xFF);
DBG_Printf(DBG_INFO, "\t0d firmware %s (0x%08X)\n", qPrintable(firmware), u32);
}
else if (tag == 0x0e && dataType == deCONZ::Zcl32BitUint) // lumi.switch.n2aeu1
{
DBG_Printf(DBG_INFO, "\t0e unknown %u (0x%08X)\n", u32, u32);
}
else if (tag == 0x0f && dataType == deCONZ::Zcl32BitUint) // lumi.switch.n2aeu1
{
DBG_Printf(DBG_INFO, "\t0f unknown %u (0x%08X)\n", u32, u32);
}
else if (tag == 0x011 && dataType == deCONZ::Zcl32BitUint) // lumi.curtain.acn002
{
DBG_Printf(DBG_INFO, "\t11 unknown %u (0x%08X)\n", u32, u32);
}
else if ((tag == 0x64 || structIndex == 0x01) && dataType == deCONZ::ZclBoolean) // lumi.ctrl_ln2 endpoint 01
{
DBG_Printf(DBG_INFO, "\t64 on/off %u\n", u8);
onOff = u8;
}
else if (tag == 0x64 && dataType == deCONZ::Zcl8BitUint) // lumi.curtain
{
if (u8 <= 100)
{
lift = 100 - u8;
}
DBG_Printf(DBG_INFO, "\t64 lift %u (%u%%)\n", u8, lift);
DBG_Printf(DBG_INFO, "\t64 smoke/gas density %u (0x%02X)\n", u8, u8); // lumi.sensor_smoke/lumi.sensor_natgas
}
else if (tag == 0x64 && dataType == deCONZ::Zcl16BitInt)
{
if (int(s16) == -10000)
{
DBG_Printf(DBG_INFO, "\t64 temperature %d (ignored)\n", int(s16));
}
else
{
DBG_Printf(DBG_INFO, "\t64 temperature %d\n", int(s16));
temperature = s16;
}
}
else if (tag == 0x65 && dataType == deCONZ::ZclBoolean) // lumi.ctrl_ln2 endpoint 02
{
DBG_Printf(DBG_INFO, "\t65 on/off %d\n", u8);
onOff2 = u8;
}
else if (tag == 0x65 && dataType == deCONZ::Zcl8BitUint)
{
DBG_Printf(DBG_INFO, "\t65 battery %u%%\n", u8);
batteryPercentage = u8;
}
else if (tag == 0x65 && dataType == deCONZ::Zcl16BitUint)
{
DBG_Printf(DBG_INFO, "\t65 humidity %u\n", u16); // Mi
humidity = u16;
}
else if (tag == 0x66)
{
if (dataType == deCONZ::Zcl8BitUint) // lumi.remote.b28ac1
{
DBG_Printf(DBG_INFO, "\t66 unknown %u (0x%02X)\n", u8, u8);
}
else if (dataType == deCONZ::Zcl16BitUint)
{
DBG_Printf(DBG_INFO, "\t66 unknown %u (0x%04X)\n", u16, u16);
}
else if (dataType == deCONZ::Zcl32BitInt) // lumi.weather
{
pressure = (s32 + 50) / 100;
DBG_Printf(DBG_INFO, "\t66 pressure %d (%d)\n", s32, pressure);
}
}
else if (tag == 0x67 && dataType == deCONZ::Zcl8BitUint) // lumi.switch.n2aeu1
{
DBG_Printf(DBG_INFO, "\t67 unknown %u (0x%02X)\n", u8, u8);
}
else if (tag == 0x69 && dataType == deCONZ::Zcl8BitUint) // lumi.switch.n2aeu1
{
charging = u8;
DBG_Printf(DBG_INFO, "\t69 charging %u (0x%02X)\n", u8, u8);
}
else if (tag == 0x6a && dataType == deCONZ::Zcl16BitUint) // lumi.switch.n2aeu1
{
DBG_Printf(DBG_INFO, "\t6a unknown %u (0x%04X)\n", u16, u16);
}
else if (tag == 0x6b && dataType == deCONZ::Zcl8BitUint) // lumi.switch.n2aeu1
{
DBG_Printf(DBG_INFO, "\t6b unknown %u (0x%02X)\n", u8, u8);
}
else if (tag == 0x6e && dataType == deCONZ::Zcl8BitUint) // lumi.ctrl_neutral2
{
DBG_Printf(DBG_INFO, "\t6e unknown %u (0x%02X)\n", u8, u8);
}
else if (tag == 0x6f && dataType == deCONZ::Zcl8BitUint) // lumi.ctrl_neutral2
{
DBG_Printf(DBG_INFO, "\t6f unknown %u (0x%02X)\n", u8, u8);
}
else if (tag == 0x94 && dataType == deCONZ::Zcl8BitUint) // lumi.relay.c2acn01
{
DBG_Printf(DBG_INFO, "\t6f unknown %u (0x%02X)\n", u8, u8);
}
else if (tag == 0x95 && dataType == deCONZ::ZclSingleFloat) // lumi.ctrl_ln2
{
consumption = static_cast<qint32>(round(f * 1000)); // convert to Wh
DBG_Printf(DBG_INFO, "\t95 consumption %f (%d)\n", f, consumption);
}
else if (tag == 0x96 && dataType == deCONZ::ZclSingleFloat) // lumi.plug.mmeu01
{
voltage = static_cast<qint32>(round(f / 10)); // convert to V
DBG_Printf(DBG_INFO, "\t96 voltage %f (%d)\n", f, voltage);
}
else if (tag == 0x96 && dataType == deCONZ::Zcl32BitUint) // lumi.sensor_smoke
{
DBG_Printf(DBG_INFO, "\t96 unknown %u (0x%08X)\n", u32, u32);
}
else if (tag == 0x97 && dataType == deCONZ::Zcl16BitUint) // lumi.sensor_cube
{
DBG_Printf(DBG_INFO, "\t97 unknown %u (0x%04X)\n", u16, u16);
}
else if (tag == 0x97 && dataType == deCONZ::ZclSingleFloat) // lumi.plug.mmeu01
{
current = static_cast<qint32>(round(f)); // already in mA
DBG_Printf(DBG_INFO, "\t97 current %f (%d)\n", f, current);
}
else if (tag == 0x98 && dataType == deCONZ::Zcl16BitUint) // lumi.sensor_cube
{
DBG_Printf(DBG_INFO, "\t98 unknown %u (0x%04X)\n", u16, u16);
}
else if (tag == 0x98 && dataType == deCONZ::ZclSingleFloat) // lumi.ctrl_ln2
{
power = static_cast<qint32>(round(f)); // already in W
DBG_Printf(DBG_INFO, "\t98 power %f (%d)\n", f, power);
}
else if (tag == 0x99 && dataType == deCONZ::Zcl16BitUint) // lumi.sensor_cube
{
DBG_Printf(DBG_INFO, "\t99 unknown %u (0x%04X)\n", u16, u16);
}
else if (tag == 0x99 && dataType == deCONZ::Zcl32BitUint) // lumi.ctrl_neutral2
{
DBG_Printf(DBG_INFO, "\t99 unknown %u (0x%08X)\n", u32, u32);
}
else if (tag == 0x9a && dataType == deCONZ::Zcl8BitUint) // lumi.ctrl_ln2
{
DBG_Printf(DBG_INFO, "\t9a unknown %u (0x%02X)\n", u8, u8);
}
else if (tag == 0x9a && dataType == deCONZ::Zcl16BitUint) // lumi.sensor_cube
{
DBG_Printf(DBG_INFO, "\t9a unknown %u (0x%04X)\n", u16, u16);
}
else if (tag == 0x9a && dataType == deCONZ::Zcl48BitUint) // lumi.vibration.aq1
{
DBG_Printf(DBG_INFO, "\t9a unknown %llu (0x%012llX)\n", u64, u64);
}
else if (tag == 0x9b && dataType == deCONZ::Zcl16BitUint) // lumi.ctrl_neutral2
{
DBG_Printf(DBG_INFO, "\t9b unknown %u (0x%04X)\n", u16, u16);
}
else if (tag == 0x9b && dataType == deCONZ::ZclBoolean) // lumi.plug.mmeu01
{
DBG_Printf(DBG_INFO, "\t9b Consumer connected (yes/no) %d\n", u8);
}
else if (structIndex == 0x05 && dataType == deCONZ::Zcl16BitUint) // lumi.sensor_magnet
{
DBG_Printf(DBG_INFO, "\tStruct index 05 unknown (counter?) %u (0x%04X)\n", u16, u16);
}
else if (structIndex == 0x06 && dataType == deCONZ::Zcl8BitUint) // lumi.sensor_magnet
{
DBG_Printf(DBG_INFO, "\tStruct index 06 unknown (counter?) %u (0x%02X)\n", u8, u8);
}
else if (tag)
{
DBG_Printf(DBG_INFO, "\t%02X unsupported tag (data type 0x%02X)\n", tag, dataType);
}
else if (structIndex)
{
DBG_Printf(DBG_INFO, "\t%02X unsupported index (data type 0x%02X)\n", structIndex, dataType);
}
}
RestNodeBase *restNodePending = nullptr;
ResourceItem *item = nullptr;
QString modelId;
for (LightNode &lightNode: nodes)
{
if (!lightNode.modelId().startsWith(QLatin1String("lumi."))) { continue; }
if (!isSameAddress(lightNode.address(), ind.srcAddress())) { continue; }
quint8 stateOnOff = UINT8_MAX;
ResourceItem *item;
if (lightNode.modelId().startsWith(QLatin1String("lumi.ctrl_neutral")) ||
lightNode.modelId() == QLatin1String("lumi.switch.b1lacn02") ||
lightNode.modelId() == QLatin1String("lumi.switch.b2lacn02"))
{
if (lightNode.haEndpoint().endpoint() == 0x02 && onOff != UINT8_MAX)
{
stateOnOff = onOff;
}
else if (lightNode.haEndpoint().endpoint() == 0x03 && onOff2 != UINT8_MAX)
{
stateOnOff = onOff2;
}
else
{
continue;
}
}
else if (lightNode.modelId().startsWith(QLatin1String("lumi.ctrl_ln")))
{
if (lightNode.haEndpoint().endpoint() == 0x01 && onOff != UINT8_MAX)
{
stateOnOff = onOff;
}
else if (lightNode.haEndpoint().endpoint() == 0x02 && onOff2 != UINT8_MAX)
{
stateOnOff = onOff2;
}
else
{
continue;
}
}
else if (lightNode.modelId().startsWith(QLatin1String("lumi.curtain")) && lift != UINT8_MAX)
{
item = lightNode.item(RStateLift);
if (item)
{
item->setValue(lift);
enqueueEvent(Event(RLights, item->descriptor().suffix, lightNode.id(), item));
}
// FIXME: deprecate
item = lightNode.item(RStateBri);
if (item)
{
const uint bri = lift * 254 / 100;
item->setValue(bri);
enqueueEvent(Event(RLights, item->descriptor().suffix, lightNode.id(), item));
stateOnOff = bri != 0;
}
// END FIXME: deprecate
item = lightNode.item(RStateOpen);
bool open = lift < 100;
if (item)
{
item->setValue(open);
enqueueEvent(Event(RLights, item->descriptor().suffix, lightNode.id(), item));
}
item = lightNode.item(RAttrSwVersion);
if (item && !firmware.isEmpty() && firmware != item->toString())
{
item->setValue(firmware);
enqueueEvent(Event(RLights, item->descriptor().suffix, lightNode.id(), item));
Q_Q(DeRestPlugin);
emit q->nodeUpdated(lightNode.address().ext(), QLatin1String("version"), firmware);
}
}
else if (onOff != UINT8_MAX)
{
stateOnOff = onOff;
}
lightNode.rx();
item = lightNode.item(RStateReachable);
if (item && !item->toBool())
{
item->setValue(true);
enqueueEvent(Event(RLights, item->descriptor().suffix, lightNode.id(), item));
}
item = lightNode.item(RStateOn);
if (item && stateOnOff != UINT8_MAX) // updated?
{
DBG_Assert(stateOnOff == 0 || stateOnOff == 1);
deCONZ::NumericUnion onOffValue;
onOffValue.u8 = stateOnOff;
lightNode.setZclValue(NodeValue::UpdateByZclReport, ind.srcEndpoint(), ONOFF_CLUSTER_ID, 0x0000, onOffValue);
item->setValue(stateOnOff);
enqueueEvent(Event(RLights, item->descriptor().suffix, lightNode.id(), item));
}
updateLightEtag(&lightNode);
lightNode.setNeedSaveDatabase(true);
saveDatabaseItems |= DB_LIGHTS;
}
for (Sensor &sensor : sensors)
{
if (sensor.deletedState() != Sensor::StateNormal || !sensor.node()) { continue; }
if (!sensor.modelId().startsWith(QLatin1String("lumi."))) { continue; }
if (!isSameAddress(sensor.address(), ind.srcAddress())) { continue; }
if (modelId.isEmpty())
{
modelId = sensor.modelId();
}
sensor.rx();
bool updated = false;
restNodePending = &sensor; // remember one sensor for pending tasks
{
item = sensor.item(RConfigReachable);
if (item && !item->toBool())
{
item->setValue(true);
enqueueEvent(Event(RSensors, RConfigReachable, sensor.id(), item));
updated = true;
}
}
// Battery percentage trumps battery voltage.
if (batteryPercentage != UINT8_MAX)
{
item = sensor.item(RStateBattery);
if (item)
{
item->setValue(batteryPercentage);
enqueueEvent(Event(RSensors, RStateBattery, sensor.id(), item));
sensor.updateStateTimestamp();
if (item->lastSet() == item->lastChanged())
{
updated = true;
}
}
}
else if (battery != 0)
{
item = sensor.item(RConfigBattery);
// DBG_Assert(item != 0); // expected - no, lumi.ctrl_neutral2
if (item)
{
// 2.7-3.0V taken from:
// https://github.com/snalee/Xiaomi/blob/master/devicetypes/a4refillpad/xiaomi-zigbee-button.src/xiaomi-zigbee-button.groovy
const float vmin = 2700;
const float vmax = 3000;
float bat = battery;
if (bat > vmax) { bat = vmax; }
else if (bat < vmin) { bat = vmin; }
bat = ((bat - vmin) /(vmax - vmin)) * 100;
if (bat > 100) { bat = 100; }
else if (bat <= 0) { bat = 1; } // ?
item->setValue(quint8(bat));
enqueueEvent(Event(RSensors, RConfigBattery, sensor.id(), item));
if (item->lastSet() == item->lastChanged())
{
updated = true;
}
}
}
if (charging != UINT8_MAX)
{
item = sensor.item(RStateCharging);
if (item)
{
item->setValue(charging == 1);
enqueueEvent(Event(RSensors, RStateCharging, sensor.id(), item));
emit q_ptr->nodeUpdated(sensor.address().ext(), QLatin1String(item->descriptor().suffix), QString::number(charging));
sensor.updateStateTimestamp();
if (item->lastSet() == item->lastChanged())
{
updated = true;
}
}
}
if (temperature != INT16_MIN)
{
item = sensor.item(RStateTemperature);
if (item)
{
ResourceItem *item2 = sensor.item(RConfigOffset);
if (item2 && item2->toNumber() != 0)
{
temperature += item2->toNumber();
}
}
else
{
item = sensor.item(RConfigTemperature);
}
if (item)
{
item->setValue(temperature);
enqueueEvent(Event(RSensors, item->descriptor().suffix, sensor.id(), item));
if (item->lastSet() == item->lastChanged())
{
updated = true;
}
if (item->descriptor().suffix == RStateTemperature)
{
sensor.updateStateTimestamp();
enqueueEvent(Event(RSensors, RStateLastUpdated, sensor.id()));
updated = true;
}
}
}
if (humidity != UINT16_MAX)
{
item = sensor.item(RStateHumidity);
if (item)
{
ResourceItem *item2 = sensor.item(RConfigOffset);
if (item2 && item2->toNumber() != 0)
{
humidity += item2->toNumber();
}
item->setValue(humidity);
enqueueEvent(Event(RSensors, item->descriptor().suffix, sensor.id(), item));
sensor.updateStateTimestamp();
enqueueEvent(Event(RSensors, RStateLastUpdated, sensor.id()));
updated = true;
}
}
if (pressure != INT16_MIN)
{
item = sensor.item(RStatePressure);
if (item)
{
ResourceItem *item2 = sensor.item(RConfigOffset);
if (item2 && item2->toNumber() != 0)
{
pressure += item2->toNumber();
}
item->setValue(pressure);
enqueueEvent(Event(RSensors, item->descriptor().suffix, sensor.id(), item));
sensor.updateStateTimestamp();
enqueueEvent(Event(RSensors, RStateLastUpdated, sensor.id()));
updated = true;
}
}
if (power != UINT32_MAX)
{
item = sensor.item(RStatePower);
if (item)
{
item->setValue(power);
enqueueEvent(Event(RSensors, item->descriptor().suffix, sensor.id(), item));
sensor.updateStateTimestamp();
enqueueEvent(Event(RSensors, RStateLastUpdated, sensor.id()));
updated = true;
}
}
if (consumption != UINT32_MAX)
{
item = sensor.item(RStateConsumption);
if (item)
{
item->setValue(consumption);
enqueueEvent(Event(RSensors, item->descriptor().suffix, sensor.id(), item));
sensor.updateStateTimestamp();
enqueueEvent(Event(RSensors, RStateLastUpdated, sensor.id()));
updated = true;
}
}
if (voltage != UINT32_MAX)
{
item = sensor.item(RStateVoltage);
if (item)
{
item->setValue(voltage);
enqueueEvent(Event(RSensors, item->descriptor().suffix, sensor.id(), item));
sensor.updateStateTimestamp();
enqueueEvent(Event(RSensors, RStateLastUpdated, sensor.id()));
updated = true;
}
}
if (current != UINT32_MAX)
{
item = sensor.item(RStateCurrent);
if (item)
{
item->setValue(current);
enqueueEvent(Event(RSensors, item->descriptor().suffix, sensor.id(), item));
sensor.updateStateTimestamp();
enqueueEvent(Event(RSensors, RStateLastUpdated, sensor.id()));
updated = true;
}
}
if (lightlevel != UINT32_MAX &&
sensor.type() == QLatin1String("ZHALightLevel") &&
sensor.modelId().startsWith(QLatin1String("lumi.sensor_motion")))
{
updateSensorLightLevel(sensor, lightlevel);
updated = true;
}
if (onOff != UINT8_MAX)
{ // don't add, just update, useful since door/window and presence sensors otherwise only report on activation
item = sensor.item(RStateOpen);
item = item ? item : sensor.item(RStatePresence);
// item = item ? item : sensor.item(RStateWater); // lumi.sensor_wleak.aq1, ignore, value is not reliable
if (attrId == 0xff02)
{
// don't update Mija devices
// e.g. lumi.sensor_motion always reports 1
}
else if (sensor.modelId().startsWith(QLatin1String("lumi.sensor_motion")))
{
// don't update Motion sensor state.
// Imcompatibility with delay feature, and not really usefull
sensor.updateStateTimestamp();
enqueueEvent(Event(RSensors, RStateLastUpdated, sensor.id()));
updated = true;
}
else if (sensor.modelId().startsWith(QLatin1String("lumi.sensor_wleak")))
{
// only update state timestamp assuming last known value is valid
sensor.updateStateTimestamp();
enqueueEvent(Event(RSensors, RStateLastUpdated, sensor.id()));
updated = true;
}
else if (item)
{
item->setValue(onOff);
enqueueEvent(Event(RSensors, item->descriptor().suffix, sensor.id(), item));
sensor.updateStateTimestamp();
enqueueEvent(Event(RSensors, RStateLastUpdated, sensor.id()));
updated = true;
}
}
item = sensor.item(RAttrSwVersion);
if (item && !firmware.isEmpty() && firmware != item->toString())
{
item->setValue(firmware);
enqueueEvent(Event(RSensors, item->descriptor().suffix, sensor.id(), item));
updated = true;
Q_Q(DeRestPlugin);
emit q->nodeUpdated(sensor.address().ext(), QLatin1String("version"), firmware);
}
if (item && dateCode.isEmpty() && !item->toString().isEmpty() && !item->toString().startsWith("3000"))
{
dateCode = item->toString();
}
if (updated)
{
updateSensorEtag(&sensor);
sensor.setNeedSaveDatabase(true);
saveDatabaseItems |= DB_SENSORS;
}
}
if (searchSensorsState == SearchSensorsActive)
{
return;
}
if (!restNodePending)
{
return;
}
Resource *r = dynamic_cast<Resource*>(restNodePending);
DBG_Assert(r != nullptr);
if (!r)
{
return;
}
item = r->item(RAttrModelId);
if (item && item->toString().endsWith(QLatin1String("86opcn01")))
{
auto *item2 = r->item(RConfigPending);
if (item2 && (item2->toNumber() & R_PENDING_MODE))
{
// Aqara switches need to be configured to send proper button events
// send the magic word
DBG_Printf(DBG_INFO, "Write Aqara switch 0x%016llX mode attribute 0x0009 = 1\n", ind.srcAddress().ext());
deCONZ::ZclAttribute attr(0x0009, deCONZ::Zcl8BitUint, QLatin1String("mode"), deCONZ::ZclReadWrite, false);
attr.setValue(static_cast<quint64>(1));
writeAttribute(restNodePending, 0x01, XIAOMI_CLUSTER_ID, attr, VENDOR_XIAOMI);
item2->setValue(item2->toNumber() & ~R_PENDING_MODE);
}
}
if (dateCode.isEmpty() && restNodePending)
{
// read datecode, will be applied to all sensors of this device
readAttributes(restNodePending, ind.srcEndpoint(), BASIC_CLUSTER_ID, { 0x0006 });
return;
}
if (item && item->toString().startsWith(QLatin1String("lumi.vibration")))
{
ResourceItem *item2 = r->item(RConfigPending);
ResourceItem *item3 = r->item(RConfigSensitivity);
DBG_Assert(item2);
DBG_Assert(item3);
if (!item3->lastSet().isValid() || item2->toNumber() == 0)
{
if (readAttributes(restNodePending, ind.srcEndpoint(), BASIC_CLUSTER_ID, { 0xff0d }, VENDOR_XIAOMI))
{
return;
}
}
else