forked from project-chip/connectedhomeip
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathall-clusters-app.zap
More file actions
2758 lines (2758 loc) · 315 KB
/
Copy pathall-clusters-app.zap
File metadata and controls
2758 lines (2758 loc) · 315 KB
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
{
"fileFormat": 2,
"featureLevel": 98,
"creator": "zap",
"keyValuePairs": [
"commandDiscovery = 1",
"defaultResponsePolicy = always",
"manufacturerCodes = 0x1002"
],
"package": [
{
"pathRelativity": "relativeToZap",
"path": "../../../src/app/zap-templates/app-templates.json",
"type": "gen-templates-json",
"version": "chip-v1"
},
{
"pathRelativity": "relativeToZap",
"path": "../../../src/app/zap-templates/zcl/zcl-with-test-extensions.json",
"type": "zcl-properties",
"category": "matter",
"version": 1,
"description": "Matter SDK ZCL data with some extensions"
}
],
"endpointTypes": [
{
"id": 1,
"name": "MA-rootdevice",
"deviceTypeRef": {
"code": 17,
"profileId": 259,
"label": "MA-powersource",
"name": "MA-powersource"
},
"deviceTypes": [
{
"code": 17,
"profileId": 259,
"label": "MA-powersource",
"name": "MA-powersource"
},
{
"code": 22,
"profileId": 259,
"label": "MA-rootdevice",
"name": "MA-rootdevice"
}
],
"deviceVersions": [
1,
1
],
"deviceIdentifiers": [
17,
22
],
"deviceTypeName": "MA-powersource",
"deviceTypeCode": 17,
"deviceTypeProfileId": 259,
"clusters": [
{
"name": "Identify",
"code": "0x0003",
"define": "IDENTIFY_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
" code | mfgCode | side | storageOption | singleton | bounded | defaultValue | reportable | minInterval | maxInterval | reportableChange",
" 0x0000 | | server | RAM | | | 0x0000 | 1 | | 65344 | => IdentifyTime [int16u]",
" 0x0001 | | server | RAM | | | 0x0 | 1 | | 65344 | => IdentifyType [IdentifyTypeEnum]",
" 0xfffc | | server | RAM | | | 0 | 1 | 1 | 65534 | => FeatureMap [bitmap32]",
" 0xfffd | | server | RAM | | | 4 | 1 | | 65344 | => ClusterRevision [int16u]"
]
},
{
"name": "Groups",
"code": "0x0004",
"define": "GROUPS_CLUSTER",
"side": "server",
"enabled": 1,
"commands": [
" code | mfgCode | source | incoming | outgoing",
"0x0000 | | server | 1 | 1 => AddGroupResponse",
"0x0001 | | server | 1 | 1 => ViewGroupResponse",
"0x0002 | | server | 1 | 1 => GetGroupMembershipResponse",
"0x0003 | | server | 1 | 1 => RemoveGroupResponse"
],
"attributes": [
" code | mfgCode | side | storageOption | singleton | bounded | defaultValue | reportable | minInterval | maxInterval | reportableChange",
" 0x0000 | | server | RAM | | | | 1 | | 65344 | => NameSupport [NameSupportBitmap]",
" 0xfffc | | server | RAM | | | 0 | 1 | 1 | 65534 | => FeatureMap [bitmap32]",
" 0xfffd | | server | RAM | | | 4 | 1 | | 65344 | => ClusterRevision [int16u]"
]
},
{
"name": "Descriptor",
"code": "0x001d",
"define": "DESCRIPTOR_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
" code | mfgCode | side | storageOption | singleton | bounded | defaultValue | reportable | minInterval | maxInterval | reportableChange",
" 0x0000 | | server | Ext | | | | 1 | | 65344 | => DeviceTypeList [array]",
" 0x0001 | | server | Ext | | | | 1 | | 65344 | => ServerList [array]",
" 0x0002 | | server | Ext | | | | 1 | | 65344 | => ClientList [array]",
" 0x0003 | | server | Ext | | | | 1 | | 65344 | => PartsList [array]",
" 0x0004 | | server | Ext | | | | 1 | 1 | 65534 | => TagList [array]",
" 0xfff8 | | server | Ext | | | | 1 | 1 | 65534 | => GeneratedCommandList [array]",
" 0xfff9 | | server | Ext | | | | 1 | 1 | 65534 | => AcceptedCommandList [array]",
" 0xfffa | | server | Ext | | | | 1 | 1 | 65534 | => EventList [array]",
" 0xfffb | | server | Ext | | | | 1 | 1 | 65534 | => AttributeList [array]",
" 0xfffc | | server | RAM | | | 0 | 1 | 1 | 65534 | => FeatureMap [bitmap32]",
" 0xfffd | | server | Ext | | | 2 | 1 | | 65344 | => ClusterRevision [int16u]"
]
},
{
"name": "Binding",
"code": "0x001e",
"define": "BINDING_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
" code | mfgCode | side | storageOption | singleton | bounded | defaultValue | reportable | minInterval | maxInterval | reportableChange",
" 0x0000 | | server | Ext | | | | 1 | 1 | 65534 | => Binding [array]",
" 0xfffc | | server | RAM | | | 0 | 1 | 1 | 65534 | => FeatureMap [bitmap32]",
" 0xfffd | | server | RAM | | | 1 | 1 | | 65344 | => ClusterRevision [int16u]"
]
},
{
"name": "Access Control",
"code": "0x001f",
"define": "ACCESS_CONTROL_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
" code | mfgCode | side | storageOption | singleton | bounded | defaultValue | reportable | minInterval | maxInterval | reportableChange",
" 0x0000 | | server | Ext | | | | 1 | | 65534 | => ACL [array]",
" 0x0001 | | server | Ext | | | | 1 | | 65534 | => Extension [array]",
" 0x0002 | | server | Ext | | | 4 | 1 | 1 | 65534 | => SubjectsPerAccessControlEntry [int16u]",
" 0x0003 | | server | Ext | | | 3 | 1 | 1 | 65534 | => TargetsPerAccessControlEntry [int16u]",
" 0x0004 | | server | Ext | | | 4 | 1 | 1 | 65534 | => AccessControlEntriesPerFabric [int16u]",
" 0xfff8 | | server | Ext | | | | 1 | 1 | 65534 | => GeneratedCommandList [array]",
" 0xfff9 | | server | Ext | | | | 1 | 1 | 65534 | => AcceptedCommandList [array]",
" 0xfffa | | server | Ext | | | | 1 | 1 | 65534 | => EventList [array]",
" 0xfffb | | server | Ext | | | | 1 | 1 | 65534 | => AttributeList [array]",
" 0xfffc | | server | RAM | | | 0 | 1 | 1 | 65534 | => FeatureMap [bitmap32]",
" 0xfffd | | server | Ext | | | 1 | 1 | 1 | 65534 | => ClusterRevision [int16u]"
],
"events": [
" code | mfgCode | side",
"0x0000 | | server => AccessControlEntryChanged",
"0x0001 | | server => AccessControlExtensionChanged"
]
},
{
"name": "Basic Information",
"code": "0x0028",
"define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
" code | mfgCode | side | storageOption | singleton | bounded | defaultValue | reportable | minInterval | maxInterval | reportableChange",
" 0x0000 | | server | Ext | singleton | | 10 | 1 | | 65344 | => DataModelRevision [int16u]",
" 0x0001 | | server | Ext | singleton | | | 1 | | 65344 | => VendorName [char_string]",
" 0x0002 | | server | Ext | singleton | | | 1 | | 65344 | => VendorID [vendor_id]",
" 0x0003 | | server | Ext | singleton | | | 1 | | 65344 | => ProductName [char_string]",
" 0x0004 | | server | Ext | singleton | | | 1 | | 65344 | => ProductID [int16u]",
" 0x0005 | | server | NVM | singleton | | | 1 | | 65344 | => NodeLabel [char_string]",
" 0x0006 | | server | Ext | singleton | | XX | 1 | | 65344 | => Location [char_string]",
" 0x0007 | | server | Ext | singleton | | 0 | 1 | | 65344 | => HardwareVersion [int16u]",
" 0x0008 | | server | Ext | singleton | | | 1 | | 65344 | => HardwareVersionString [char_string]",
" 0x0009 | | server | Ext | singleton | | 0 | 1 | | 65344 | => SoftwareVersion [int32u]",
" 0x000a | | server | Ext | singleton | | | 1 | | 65344 | => SoftwareVersionString [char_string]",
" 0x000b | | server | Ext | singleton | | 20210614123456ZZ | 1 | | 65344 | => ManufacturingDate [char_string]",
" 0x000c | | server | Ext | singleton | | | 1 | | 65344 | => PartNumber [char_string]",
" 0x000d | | server | Ext | singleton | | | 1 | | 65344 | => ProductURL [long_char_string]",
" 0x000e | | server | Ext | singleton | | | 1 | | 65344 | => ProductLabel [char_string]",
" 0x000f | | server | Ext | singleton | | | 1 | | 65344 | => SerialNumber [char_string]",
" 0x0010 | | server | NVM | singleton | | 0 | 1 | | 65344 | => LocalConfigDisabled [boolean]",
" 0x0012 | | server | Ext | singleton | | | 1 | | 65344 | => UniqueID [char_string]",
" 0x0013 | | server | Ext | | | | 1 | 1 | 65534 | => CapabilityMinima [CapabilityMinimaStruct]",
" 0x0014 | | server | Ext | singleton | | | 1 | 1 | 65534 | => ProductAppearance [ProductAppearanceStruct]",
" 0xfff8 | | server | Ext | singleton | | | 1 | 1 | 65534 | => GeneratedCommandList [array]",
" 0xfff9 | | server | Ext | singleton | | | 1 | 1 | 65534 | => AcceptedCommandList [array]",
" 0xfffa | | server | Ext | singleton | | | 1 | 1 | 65534 | => EventList [array]",
" 0xfffb | | server | Ext | singleton | | | 1 | 1 | 65534 | => AttributeList [array]",
" 0xfffc | | server | RAM | | | 0 | 1 | 1 | 65534 | => FeatureMap [bitmap32]",
" 0xfffd | | server | RAM | singleton | | 2 | 1 | | 65344 | => ClusterRevision [int16u]"
],
"events": [
" code | mfgCode | side",
"0x0000 | | server => StartUp",
"0x0001 | | server => ShutDown",
"0x0002 | | server => Leave"
]
},
{
"name": "OTA Software Update Provider",
"code": "0x0029",
"define": "OTA_SOFTWARE_UPDATE_PROVIDER_CLUSTER",
"side": "client",
"enabled": 1,
"commands": [
" code | mfgCode | source | incoming | outgoing",
"0x0000 | | client | 0 | 1 => QueryImage",
"0x0002 | | client | 0 | 1 => ApplyUpdateRequest",
"0x0004 | | client | 0 | 1 => NotifyUpdateApplied"
],
"attributes": [
" code | mfgCode | side | storageOption | singleton | bounded | defaultValue | reportable | minInterval | maxInterval | reportableChange",
" 0xfffd | | client | RAM | | | 1 | 1 | | 65344 | => ClusterRevision [int16u]"
]
},
{
"name": "OTA Software Update Requestor",
"code": "0x002a",
"define": "OTA_SOFTWARE_UPDATE_REQUESTOR_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
" code | mfgCode | side | storageOption | singleton | bounded | defaultValue | reportable | minInterval | maxInterval | reportableChange",
" 0x0000 | | server | Ext | | | 0 | 1 | 1 | 65534 | => DefaultOTAProviders [array]",
" 0x0001 | | server | RAM | | | 1 | 1 | | 65344 | => UpdatePossible [boolean]",
" 0x0002 | | server | RAM | | | 0 | 1 | | 65344 | => UpdateState [OTAUpdateStateEnum]",
" 0x0003 | | server | RAM | | | 0 | 1 | 1 | 65534 | => UpdateStateProgress [int8u]",
" 0xfffc | | server | RAM | | | 0 | 1 | 1 | 65534 | => FeatureMap [bitmap32]",
" 0xfffd | | server | RAM | | | 1 | 1 | | 65344 | => ClusterRevision [int16u]"
],
"events": [
" code | mfgCode | side",
"0x0000 | | server => StateTransition",
"0x0001 | | server => VersionApplied",
"0x0002 | | server => DownloadError"
]
},
{
"name": "Localization Configuration",
"code": "0x002b",
"define": "LOCALIZATION_CONFIGURATION_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
" code | mfgCode | side | storageOption | singleton | bounded | defaultValue | reportable | minInterval | maxInterval | reportableChange",
" 0x0000 | | server | NVM | | | en-US | 1 | 1 | 65534 | => ActiveLocale [char_string]",
" 0x0001 | | server | Ext | | | | 1 | 1 | 65534 | => SupportedLocales [array]",
" 0xfff8 | | server | Ext | | | | 1 | 1 | 65534 | => GeneratedCommandList [array]",
" 0xfff9 | | server | Ext | | | | 1 | 1 | 65534 | => AcceptedCommandList [array]",
" 0xfffa | | server | Ext | | | | 1 | 1 | 65534 | => EventList [array]",
" 0xfffb | | server | Ext | | | | 1 | 1 | 65534 | => AttributeList [array]",
" 0xfffc | | server | RAM | | | 0 | 1 | 1 | 65534 | => FeatureMap [bitmap32]",
" 0xfffd | | server | RAM | | | 1 | 1 | 1 | 65534 | => ClusterRevision [int16u]"
]
},
{
"name": "Time Format Localization",
"code": "0x002c",
"define": "TIME_FORMAT_LOCALIZATION_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
" code | mfgCode | side | storageOption | singleton | bounded | defaultValue | reportable | minInterval | maxInterval | reportableChange",
" 0x0000 | | server | NVM | | | 0 | 1 | 1 | 65534 | => HourFormat [HourFormatEnum]",
" 0x0001 | | server | NVM | | | 0 | 1 | 1 | 65534 | => ActiveCalendarType [CalendarTypeEnum]",
" 0x0002 | | server | Ext | | | | 1 | 1 | 65534 | => SupportedCalendarTypes [array]",
" 0xfff8 | | server | Ext | | | | 1 | 1 | 65534 | => GeneratedCommandList [array]",
" 0xfff9 | | server | Ext | | | | 1 | 1 | 65534 | => AcceptedCommandList [array]",
" 0xfffa | | server | Ext | | | | 1 | 1 | 65534 | => EventList [array]",
" 0xfffb | | server | Ext | | | | 1 | 1 | 65534 | => AttributeList [array]",
" 0xfffc | | server | RAM | | | 1 | 1 | 1 | 65534 | => FeatureMap [bitmap32]",
" 0xfffd | | server | RAM | | | 1 | 1 | 1 | 65534 | => ClusterRevision [int16u]"
]
},
{
"name": "Unit Localization",
"code": "0x002d",
"define": "UNIT_LOCALIZATION_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
" code | mfgCode | side | storageOption | singleton | bounded | defaultValue | reportable | minInterval | maxInterval | reportableChange",
" 0x0000 | | server | NVM | | | 0 | 1 | 1 | 65534 | => TemperatureUnit [TempUnitEnum]",
" 0xfff8 | | server | Ext | | | | 1 | 1 | 65534 | => GeneratedCommandList [array]",
" 0xfff9 | | server | Ext | | | | 1 | 1 | 65534 | => AcceptedCommandList [array]",
" 0xfffa | | server | Ext | | | | 1 | 1 | 65534 | => EventList [array]",
" 0xfffb | | server | Ext | | | | 1 | 1 | 65534 | => AttributeList [array]",
" 0xfffc | | server | RAM | | | 0x1 | 1 | 1 | 65534 | => FeatureMap [bitmap32]",
" 0xfffd | | server | RAM | | | 1 | 1 | 1 | 65534 | => ClusterRevision [int16u]"
]
},
{
"name": "Power Source Configuration",
"code": "0x002e",
"define": "POWER_SOURCE_CONFIGURATION_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
" code | mfgCode | side | storageOption | singleton | bounded | defaultValue | reportable | minInterval | maxInterval | reportableChange",
" 0x0000 | | server | Ext | | | | 1 | 1 | 65534 | => Sources [array]",
" 0xfffc | | server | RAM | | | 0 | 1 | 1 | 65534 | => FeatureMap [bitmap32]",
" 0xfffd | | server | RAM | | | 1 | 1 | 1 | 65534 | => ClusterRevision [int16u]"
]
},
{
"name": "Power Source",
"code": "0x002f",
"define": "POWER_SOURCE_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
" code | mfgCode | side | storageOption | singleton | bounded | defaultValue | reportable | minInterval | maxInterval | reportableChange",
" 0x0000 | | server | RAM | | | 0 | 1 | 1 | 65534 | => Status [PowerSourceStatusEnum]",
" 0x0001 | | server | RAM | | | 3 | 1 | 1 | 65534 | => Order [int8u]",
" 0x0002 | | server | RAM | | | B1 | 1 | 1 | 65534 | => Description [char_string]",
" 0x000e | | server | RAM | | | 0 | 1 | 1 | 65534 | => BatChargeLevel [BatChargeLevelEnum]",
" 0x000f | | server | RAM | | | | 1 | 1 | 65534 | => BatReplacementNeeded [boolean]",
" 0x0010 | | server | RAM | | | | 1 | 1 | 65534 | => BatReplaceability [BatReplaceabilityEnum]",
" 0x001f | | server | Ext | | | | 1 | 1 | 65534 | => EndpointList [array]",
" 0xfff8 | | server | Ext | | | | 1 | 1 | 65534 | => GeneratedCommandList [array]",
" 0xfff9 | | server | Ext | | | | 1 | 1 | 65534 | => AcceptedCommandList [array]",
" 0xfffa | | server | Ext | | | | 1 | 1 | 65534 | => EventList [array]",
" 0xfffb | | server | Ext | | | | 1 | 1 | 65534 | => AttributeList [array]",
" 0xfffc | | server | RAM | | | 2 | 1 | 1 | 65534 | => FeatureMap [bitmap32]",
" 0xfffd | | server | RAM | | | 2 | 1 | 1 | 65534 | => ClusterRevision [int16u]"
]
},
{
"name": "General Commissioning",
"code": "0x0030",
"define": "GENERAL_COMMISSIONING_CLUSTER",
"side": "server",
"enabled": 1,
"commands": [
" code | mfgCode | source | incoming | outgoing",
"0x0001 | | server | 1 | 1 => ArmFailSafeResponse",
"0x0003 | | server | 1 | 1 => SetRegulatoryConfigResponse",
"0x0005 | | server | 0 | 1 => CommissioningCompleteResponse"
],
"attributes": [
" code | mfgCode | side | storageOption | singleton | bounded | defaultValue | reportable | minInterval | maxInterval | reportableChange",
" 0x0000 | | server | RAM | | | 0x0000000000000000 | 1 | | 65344 | => Breadcrumb [int64u]",
" 0x0001 | | server | Ext | | | | 1 | | 65344 | => BasicCommissioningInfo [BasicCommissioningInfo]",
" 0x0002 | | server | Ext | | | 0 | 1 | 1 | 65534 | => RegulatoryConfig [RegulatoryLocationTypeEnum]",
" 0x0003 | | server | Ext | | | 0 | 1 | 1 | 65534 | => LocationCapability [RegulatoryLocationTypeEnum]",
" 0x0004 | | server | Ext | | | 1 | 1 | 1 | 65534 | => SupportsConcurrentConnection [boolean]",
" 0xfff8 | | server | Ext | | | | 1 | 1 | 65534 | => GeneratedCommandList [array]",
" 0xfff9 | | server | Ext | | | | 1 | 1 | 65534 | => AcceptedCommandList [array]",
" 0xfffa | | server | Ext | | | | 1 | 1 | 65534 | => EventList [array]",
" 0xfffb | | server | Ext | | | | 1 | 1 | 65534 | => AttributeList [array]",
" 0xfffc | | server | RAM | | | 0 | 1 | 1 | 65534 | => FeatureMap [bitmap32]",
" 0xfffd | | server | RAM | | | 1 | 1 | | 65344 | => ClusterRevision [int16u]"
]
},
{
"name": "Network Commissioning",
"code": "0x0031",
"define": "NETWORK_COMMISSIONING_CLUSTER",
"side": "server",
"enabled": 1,
"commands": [
" code | mfgCode | source | incoming | outgoing",
"0x0001 | | server | 1 | 1 => ScanNetworksResponse",
"0x0005 | | server | 1 | 1 => NetworkConfigResponse",
"0x0007 | | server | 1 | 1 => ConnectNetworkResponse"
],
"attributes": [
" code | mfgCode | side | storageOption | singleton | bounded | defaultValue | reportable | minInterval | maxInterval | reportableChange",
" 0x0000 | | server | RAM | | | | 1 | 1 | 65534 | => MaxNetworks [int8u]",
" 0x0001 | | server | Ext | | | | 1 | 1 | 65534 | => Networks [array]",
" 0x0002 | | server | RAM | | | | 1 | 1 | 65534 | => ScanMaxTimeSeconds [int8u]",
" 0x0003 | | server | RAM | | | | 1 | 1 | 65534 | => ConnectMaxTimeSeconds [int8u]",
" 0x0004 | | server | RAM | | | | 1 | 1 | 65534 | => InterfaceEnabled [boolean]",
" 0x0005 | | server | RAM | | | | 1 | 1 | 65534 | => LastNetworkingStatus [NetworkCommissioningStatusEnum]",
" 0x0006 | | server | RAM | | | | 1 | 1 | 65534 | => LastNetworkID [octet_string]",
" 0x0007 | | server | RAM | | | | 1 | 1 | 65534 | => LastConnectErrorValue [int32s]",
" 0xfff8 | | server | Ext | | | | 1 | 1 | 65534 | => GeneratedCommandList [array]",
" 0xfff9 | | server | Ext | | | | 1 | 1 | 65534 | => AcceptedCommandList [array]",
" 0xfffa | | server | Ext | | | | 1 | 1 | 65534 | => EventList [array]",
" 0xfffb | | server | Ext | | | | 1 | 1 | 65534 | => AttributeList [array]",
" 0xfffc | | server | RAM | | | 2 | 1 | | 65344 | => FeatureMap [bitmap32]",
" 0xfffd | | server | RAM | | | 1 | 1 | | 65344 | => ClusterRevision [int16u]"
]
},
{
"name": "Diagnostic Logs",
"code": "0x0032",
"define": "DIAGNOSTIC_LOGS_CLUSTER",
"side": "server",
"enabled": 1,
"commands": [
" code | mfgCode | source | incoming | outgoing",
"0x0000 | | client | 1 | 0 => RetrieveLogsRequest"
],
"attributes": [
" code | mfgCode | side | storageOption | singleton | bounded | defaultValue | reportable | minInterval | maxInterval | reportableChange",
" 0xfffc | | server | RAM | | | 0 | 1 | 1 | 65534 | => FeatureMap [bitmap32]",
" 0xfffd | | server | RAM | | | 1 | 1 | 1 | 65534 | => ClusterRevision [int16u]"
]
},
{
"name": "General Diagnostics",
"code": "0x0033",
"define": "GENERAL_DIAGNOSTICS_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
" code | mfgCode | side | storageOption | singleton | bounded | defaultValue | reportable | minInterval | maxInterval | reportableChange",
" 0x0000 | | server | Ext | | | | 1 | | 65344 | => NetworkInterfaces [array]",
" 0x0001 | | server | Ext | | | 0x0000 | 1 | | 65344 | => RebootCount [int16u]",
" 0x0002 | | server | Ext | | | 0x0000000000000000 | 1 | 1 | 65534 | => UpTime [int64u]",
" 0x0003 | | server | Ext | | | 0x00000000 | 1 | 1 | 65534 | => TotalOperationalHours [int32u]",
" 0x0004 | | server | Ext | | | | 1 | 1 | 65534 | => BootReason [BootReasonEnum]",
" 0x0005 | | server | Ext | | | | 1 | 1 | 65534 | => ActiveHardwareFaults [array]",
" 0x0006 | | server | Ext | | | | 1 | 1 | 65534 | => ActiveRadioFaults [array]",
" 0x0007 | | server | Ext | | | | 1 | 1 | 65534 | => ActiveNetworkFaults [array]",
" 0x0008 | | server | Ext | | | | 1 | 1 | 65534 | => TestEventTriggersEnabled [boolean]",
" 0xfff8 | | server | Ext | | | | 1 | 1 | 65534 | => GeneratedCommandList [array]",
" 0xfff9 | | server | Ext | | | | 1 | 1 | 65534 | => AcceptedCommandList [array]",
" 0xfffa | | server | Ext | | | | 1 | 1 | 65534 | => EventList [array]",
" 0xfffb | | server | Ext | | | | 1 | 1 | 65534 | => AttributeList [array]",
" 0xfffc | | server | RAM | | | 0 | 1 | 1 | 65534 | => FeatureMap [bitmap32]",
" 0xfffd | | server | RAM | | | 1 | 1 | | 65344 | => ClusterRevision [int16u]"
],
"events": [
" code | mfgCode | side",
"0x0000 | | server => HardwareFaultChange",
"0x0001 | | server => RadioFaultChange",
"0x0002 | | server => NetworkFaultChange",
"0x0003 | | server => BootReason"
]
},
{
"name": "Software Diagnostics",
"code": "0x0034",
"define": "SOFTWARE_DIAGNOSTICS_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
" code | mfgCode | side | storageOption | singleton | bounded | defaultValue | reportable | minInterval | maxInterval | reportableChange",
" 0x0000 | | server | Ext | | | | 1 | 1 | 65534 | => ThreadMetrics [array]",
" 0x0001 | | server | Ext | | | 0x0000000000000000 | 1 | 1 | 65534 | => CurrentHeapFree [int64u]",
" 0x0002 | | server | Ext | | | 0x0000000000000000 | 1 | 1 | 65534 | => CurrentHeapUsed [int64u]",
" 0x0003 | | server | Ext | | | 0x0000000000000000 | 1 | | 65344 | => CurrentHeapHighWatermark [int64u]",
" 0xfffc | | server | RAM | | | 1 | 1 | 1 | 65534 | => FeatureMap [bitmap32]",
" 0xfffd | | server | RAM | | | 1 | 1 | | 65344 | => ClusterRevision [int16u]"
],
"events": [
" code | mfgCode | side",
"0x0000 | | server => SoftwareFault"
]
},
{
"name": "Thread Network Diagnostics",
"code": "0x0035",
"define": "THREAD_NETWORK_DIAGNOSTICS_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
" code | mfgCode | side | storageOption | singleton | bounded | defaultValue | reportable | minInterval | maxInterval | reportableChange",
" 0x0000 | | server | Ext | | | | 1 | | 65344 | => Channel [int16u]",
" 0x0001 | | server | Ext | | | | 1 | | 65344 | => RoutingRole [RoutingRoleEnum]",
" 0x0002 | | server | Ext | | | 0 | 1 | | 65344 | => NetworkName [char_string]",
" 0x0003 | | server | Ext | | | 0x0000 | 1 | | 65344 | => PanId [int16u]",
" 0x0004 | | server | Ext | | | 0x0000000000000000 | 1 | | 65344 | => ExtendedPanId [int64u]",
" 0x0005 | | server | Ext | | | | 1 | | 65344 | => MeshLocalPrefix [octet_string]",
" 0x0006 | | server | Ext | | | 0x0000000000000000 | 1 | | 65344 | => OverrunCount [int64u]",
" 0x0007 | | server | Ext | | | | 1 | | 65344 | => NeighborTable [array]",
" 0x0008 | | server | Ext | | | | 1 | | 65344 | => RouteTable [array]",
" 0x0009 | | server | Ext | | | | 1 | | 65344 | => PartitionId [int32u]",
" 0x000a | | server | Ext | | | | 1 | | 65344 | => Weighting [int8u]",
" 0x000b | | server | Ext | | | | 1 | | 65344 | => DataVersion [int8u]",
" 0x000c | | server | Ext | | | | 1 | | 65344 | => StableDataVersion [int8u]",
" 0x000d | | server | Ext | | | | 1 | | 65344 | => LeaderRouterId [int8u]",
" 0x000e | | server | Ext | | | 0x0000 | 1 | | 65344 | => DetachedRoleCount [int16u]",
" 0x000f | | server | Ext | | | 0x0000 | 1 | | 65344 | => ChildRoleCount [int16u]",
" 0x0010 | | server | Ext | | | 0x0000 | 1 | | 65344 | => RouterRoleCount [int16u]",
" 0x0011 | | server | Ext | | | 0x0000 | 1 | | 65344 | => LeaderRoleCount [int16u]",
" 0x0012 | | server | Ext | | | 0x0000 | 1 | | 65344 | => AttachAttemptCount [int16u]",
" 0x0013 | | server | Ext | | | 0x0000 | 1 | | 65344 | => PartitionIdChangeCount [int16u]",
" 0x0014 | | server | Ext | | | 0x0000 | 1 | | 65344 | => BetterPartitionAttachAttemptCount [int16u]",
" 0x0015 | | server | Ext | | | 0x0000 | 1 | | 65344 | => ParentChangeCount [int16u]",
" 0x0016 | | server | Ext | | | 0x0000 | 1 | | 65344 | => TxTotalCount [int32u]",
" 0x0017 | | server | Ext | | | 0x0000 | 1 | | 65344 | => TxUnicastCount [int32u]",
" 0x0018 | | server | Ext | | | 0x0000 | 1 | | 65344 | => TxBroadcastCount [int32u]",
" 0x0019 | | server | Ext | | | 0x0000 | 1 | | 65344 | => TxAckRequestedCount [int32u]",
" 0x001a | | server | Ext | | | 0x0000 | 1 | | 65344 | => TxAckedCount [int32u]",
" 0x001b | | server | Ext | | | 0x0000 | 1 | | 65344 | => TxNoAckRequestedCount [int32u]",
" 0x001c | | server | Ext | | | 0x0000 | 1 | | 65344 | => TxDataCount [int32u]",
" 0x001d | | server | Ext | | | 0x0000 | 1 | | 65344 | => TxDataPollCount [int32u]",
" 0x001e | | server | Ext | | | 0x0000 | 1 | | 65344 | => TxBeaconCount [int32u]",
" 0x001f | | server | Ext | | | 0x0000 | 1 | | 65344 | => TxBeaconRequestCount [int32u]",
" 0x0020 | | server | Ext | | | 0x0000 | 1 | | 65344 | => TxOtherCount [int32u]",
" 0x0021 | | server | Ext | | | 0x0000 | 1 | | 65344 | => TxRetryCount [int32u]",
" 0x0022 | | server | Ext | | | 0x0000 | 1 | | 65344 | => TxDirectMaxRetryExpiryCount [int32u]",
" 0x0023 | | server | Ext | | | 0x0000 | 1 | | 65344 | => TxIndirectMaxRetryExpiryCount [int32u]",
" 0x0024 | | server | Ext | | | 0x0000 | 1 | | 65344 | => TxErrCcaCount [int32u]",
" 0x0025 | | server | Ext | | | 0x0000 | 1 | | 65344 | => TxErrAbortCount [int32u]",
" 0x0026 | | server | Ext | | | 0x0000 | 1 | | 65344 | => TxErrBusyChannelCount [int32u]",
" 0x0027 | | server | Ext | | | 0x0000 | 1 | | 65344 | => RxTotalCount [int32u]",
" 0x0028 | | server | Ext | | | 0x0000 | 1 | | 65344 | => RxUnicastCount [int32u]",
" 0x0029 | | server | Ext | | | 0x0000 | 1 | | 65344 | => RxBroadcastCount [int32u]",
" 0x002a | | server | Ext | | | 0x0000 | 1 | | 65344 | => RxDataCount [int32u]",
" 0x002b | | server | Ext | | | 0x0000 | 1 | | 65344 | => RxDataPollCount [int32u]",
" 0x002c | | server | Ext | | | 0x0000 | 1 | | 65344 | => RxBeaconCount [int32u]",
" 0x002d | | server | Ext | | | 0x0000 | 1 | | 65344 | => RxBeaconRequestCount [int32u]",
" 0x002e | | server | Ext | | | 0x0000 | 1 | | 65344 | => RxOtherCount [int32u]",
" 0x002f | | server | Ext | | | 0x0000 | 1 | | 65344 | => RxAddressFilteredCount [int32u]",
" 0x0030 | | server | Ext | | | 0x0000 | 1 | | 65344 | => RxDestAddrFilteredCount [int32u]",
" 0x0031 | | server | Ext | | | 0x0000 | 1 | | 65344 | => RxDuplicatedCount [int32u]",
" 0x0032 | | server | Ext | | | 0x0000 | 1 | | 65344 | => RxErrNoFrameCount [int32u]",
" 0x0033 | | server | Ext | | | 0x0000 | 1 | | 65344 | => RxErrUnknownNeighborCount [int32u]",
" 0x0034 | | server | Ext | | | 0x0000 | 1 | | 65344 | => RxErrInvalidSrcAddrCount [int32u]",
" 0x0035 | | server | Ext | | | 0x0000 | 1 | | 65344 | => RxErrSecCount [int32u]",
" 0x0036 | | server | Ext | | | 0x0000 | 1 | | 65344 | => RxErrFcsCount [int32u]",
" 0x0037 | | server | Ext | | | 0x0000 | 1 | | 65344 | => RxErrOtherCount [int32u]",
" 0x0038 | | server | Ext | | | 0x0000000000000000 | 1 | 1 | 65534 | => ActiveTimestamp [int64u]",
" 0x0039 | | server | Ext | | | 0x0000000000000000 | 1 | 1 | 65534 | => PendingTimestamp [int64u]",
" 0x003a | | server | Ext | | | 0x0000 | 1 | 1 | 65534 | => Delay [int32u]",
" 0x003b | | server | Ext | | | | 1 | | 65344 | => SecurityPolicy [SecurityPolicy]",
" 0x003c | | server | Ext | | | 0x0000 | 1 | | 65344 | => ChannelPage0Mask [octet_string]",
" 0x003d | | server | Ext | | | | 1 | | 65344 | => OperationalDatasetComponents [OperationalDatasetComponents]",
" 0x003e | | server | Ext | | | | 1 | | 65344 | => ActiveNetworkFaultsList [array]",
" 0xfffc | | server | RAM | | | 0x000F | 1 | 1 | 65534 | => FeatureMap [bitmap32]",
" 0xfffd | | server | RAM | | | 1 | 1 | | 65344 | => ClusterRevision [int16u]"
]
},
{
"name": "WiFi Network Diagnostics",
"code": "0x0036",
"define": "WIFI_NETWORK_DIAGNOSTICS_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
" code | mfgCode | side | storageOption | singleton | bounded | defaultValue | reportable | minInterval | maxInterval | reportableChange",
" 0x0000 | | server | Ext | | | | 1 | | 65344 | => BSSID [octet_string]",
" 0x0001 | | server | Ext | | | | 1 | | 65344 | => SecurityType [SecurityTypeEnum]",
" 0x0002 | | server | Ext | | | | 1 | | 65344 | => WiFiVersion [WiFiVersionEnum]",
" 0x0003 | | server | Ext | | | 0x0000 | 1 | | 65344 | => ChannelNumber [int16u]",
" 0x0004 | | server | Ext | | | 0x00 | 1 | | 65344 | => RSSI [int8s]",
" 0x0005 | | server | Ext | | | 0x00000000 | 1 | | 65344 | => BeaconLostCount [int32u]",
" 0x0006 | | server | Ext | | | 0x00000000 | 1 | | 65344 | => BeaconRxCount [int32u]",
" 0x0007 | | server | Ext | | | 0x00000000 | 1 | | 65344 | => PacketMulticastRxCount [int32u]",
" 0x0008 | | server | Ext | | | 0x00000000 | 1 | | 65344 | => PacketMulticastTxCount [int32u]",
" 0x0009 | | server | Ext | | | 0x00000000 | 1 | | 65344 | => PacketUnicastRxCount [int32u]",
" 0x000a | | server | Ext | | | 0x00000000 | 1 | | 65344 | => PacketUnicastTxCount [int32u]",
" 0x000b | | server | Ext | | | 0x0000000000000000 | 1 | | 65344 | => CurrentMaxRate [int64u]",
" 0x000c | | server | Ext | | | 0x0000000000000000 | 1 | 1 | 65534 | => OverrunCount [int64u]",
" 0xfffc | | server | RAM | | | 3 | 1 | 1 | 65534 | => FeatureMap [bitmap32]",
" 0xfffd | | server | RAM | | | 1 | 1 | | 65344 | => ClusterRevision [int16u]"
],
"events": [
" code | mfgCode | side",
"0x0000 | | server => Disconnection",
"0x0001 | | server => AssociationFailure",
"0x0002 | | server => ConnectionStatus"
]
},
{
"name": "Ethernet Network Diagnostics",
"code": "0x0037",
"define": "ETHERNET_NETWORK_DIAGNOSTICS_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
" code | mfgCode | side | storageOption | singleton | bounded | defaultValue | reportable | minInterval | maxInterval | reportableChange",
" 0x0000 | | server | Ext | | | | 1 | 1 | 65534 | => PHYRate [PHYRateEnum]",
" 0x0001 | | server | Ext | | | 0x00 | 1 | 1 | 65534 | => FullDuplex [boolean]",
" 0x0002 | | server | Ext | | | 0x0000000000000000 | 1 | | 65344 | => PacketRxCount [int64u]",
" 0x0003 | | server | Ext | | | 0x0000000000000000 | 1 | | 65344 | => PacketTxCount [int64u]",
" 0x0004 | | server | Ext | | | 0x0000000000000000 | 1 | | 65344 | => TxErrCount [int64u]",
" 0x0005 | | server | Ext | | | 0x0000000000000000 | 1 | | 65344 | => CollisionCount [int64u]",
" 0x0006 | | server | Ext | | | 0x0000000000000000 | 1 | | 65344 | => OverrunCount [int64u]",
" 0x0007 | | server | Ext | | | 0x00 | 1 | 1 | 65534 | => CarrierDetect [boolean]",
" 0x0008 | | server | Ext | | | 0x0000000000000000 | 1 | 1 | 65534 | => TimeSinceReset [int64u]",
" 0xfffc | | server | RAM | | | 3 | 1 | 1 | 65534 | => FeatureMap [bitmap32]",
" 0xfffd | | server | RAM | | | 1 | 1 | | 65344 | => ClusterRevision [int16u]"
]
},
{
"name": "Time Synchronization",
"code": "0x0038",
"define": "TIME_SYNCHRONIZATION_CLUSTER",
"side": "server",
"enabled": 1,
"commands": [
" code | mfgCode | source | incoming | outgoing",
"0x0003 | | server | 0 | 1 => SetTimeZoneResponse"
],
"attributes": [
" code | mfgCode | side | storageOption | singleton | bounded | defaultValue | reportable | minInterval | maxInterval | reportableChange",
" 0x0000 | | server | Ext | | | | 1 | 1 | 65534 | => UTCTime [epoch_us]",
" 0x0001 | | server | Ext | | | 0x00 | 1 | 1 | 65534 | => Granularity [GranularityEnum]",
" 0x0002 | | server | RAM | | | 0x00 | 1 | 1 | 65534 | => TimeSource [TimeSourceEnum]",
" 0x0003 | | server | Ext | | | | 1 | 1 | 65534 | => TrustedTimeSource [TrustedTimeSourceStruct]",
" 0x0004 | | server | Ext | | | | 1 | 1 | 65534 | => DefaultNTP [char_string]",
" 0x0005 | | server | Ext | | | 1 | 1 | 1 | 65534 | => TimeZone [array]",
" 0x0006 | | server | Ext | | | | 1 | 1 | 65534 | => DSTOffset [array]",
" 0x0007 | | server | Ext | | | 1 | 1 | 1 | 65534 | => LocalTime [epoch_us]",
" 0x0008 | | server | RAM | | | 0 | 1 | 1 | 65534 | => TimeZoneDatabase [TimeZoneDatabaseEnum]",
" 0x000a | | server | Ext | | | 3 | 1 | 1 | 65534 | => TimeZoneListMaxSize [int8u]",
" 0x000b | | server | Ext | | | | 1 | 1 | 65534 | => DSTOffsetListMaxSize [int8u]",
" 0x000c | | server | RAM | | | false | 1 | 1 | 65534 | => SupportsDNSResolve [boolean]",
" 0xfff8 | | server | Ext | | | | 1 | 1 | 65534 | => GeneratedCommandList [array]",
" 0xfff9 | | server | Ext | | | | 1 | 1 | 65534 | => AcceptedCommandList [array]",
" 0xfffb | | server | Ext | | | | 1 | 1 | 65534 | => AttributeList [array]",
" 0xfffc | | server | RAM | | | 0x0B | 1 | 1 | 65534 | => FeatureMap [bitmap32]",
" 0xfffd | | server | RAM | | | 2 | 1 | 1 | 65534 | => ClusterRevision [int16u]"
],
"events": [
" code | mfgCode | side",
"0x0000 | | server => DSTTableEmpty",
"0x0001 | | server => DSTStatus",
"0x0002 | | server => TimeZoneStatus",
"0x0003 | | server => TimeFailure",
"0x0004 | | server => MissingTrustedTimeSource"
]
},
{
"name": "Administrator Commissioning",
"code": "0x003c",
"define": "ADMINISTRATOR_COMMISSIONING_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
" code | mfgCode | side | storageOption | singleton | bounded | defaultValue | reportable | minInterval | maxInterval | reportableChange",
" 0x0000 | | server | Ext | | | 0 | 1 | 1 | 65534 | => WindowStatus [CommissioningWindowStatusEnum]",
" 0x0001 | | server | Ext | | | 1 | 1 | 1 | 65534 | => AdminFabricIndex [fabric_idx]",
" 0x0002 | | server | Ext | | | 0 | 1 | 1 | 65534 | => AdminVendorId [int16u]",
" 0xfff8 | | server | Ext | | | | 1 | 1 | 65534 | => GeneratedCommandList [array]",
" 0xfff9 | | server | Ext | | | | 1 | 1 | 65534 | => AcceptedCommandList [array]",
" 0xfffa | | server | Ext | | | | 1 | 1 | 65534 | => EventList [array]",
" 0xfffb | | server | Ext | | | | 1 | 1 | 65534 | => AttributeList [array]",
" 0xfffc | | server | RAM | | | 0 | 1 | 1 | 65534 | => FeatureMap [bitmap32]",
" 0xfffd | | server | RAM | | | 1 | 1 | | 65344 | => ClusterRevision [int16u]"
]
},
{
"name": "Operational Credentials",
"code": "0x003e",
"define": "OPERATIONAL_CREDENTIALS_CLUSTER",
"side": "server",
"enabled": 1,
"commands": [
" code | mfgCode | source | incoming | outgoing",
"0x0001 | | server | 0 | 1 => AttestationResponse",
"0x0003 | | server | 0 | 1 => CertificateChainResponse",
"0x0005 | | server | 0 | 1 => CSRResponse",
"0x0008 | | server | 0 | 1 => NOCResponse"
],
"attributes": [
" code | mfgCode | side | storageOption | singleton | bounded | defaultValue | reportable | minInterval | maxInterval | reportableChange",
" 0x0000 | | server | Ext | | | | 1 | 1 | 65534 | => NOCs [array]",
" 0x0001 | | server | Ext | | | | 1 | | 65344 | => Fabrics [array]",
" 0x0002 | | server | Ext | | | | 1 | | 65344 | => SupportedFabrics [int8u]",
" 0x0003 | | server | Ext | | | | 1 | | 65344 | => CommissionedFabrics [int8u]",
" 0x0004 | | server | Ext | | | | 1 | | 65344 | => TrustedRootCertificates [array]",
" 0x0005 | | server | Ext | | | | 1 | 1 | 65534 | => CurrentFabricIndex [int8u]",
" 0xfff8 | | server | Ext | | | | 1 | 1 | 65534 | => GeneratedCommandList [array]",
" 0xfff9 | | server | Ext | | | | 1 | 1 | 65534 | => AcceptedCommandList [array]",
" 0xfffa | | server | Ext | | | | 1 | 1 | 65534 | => EventList [array]",
" 0xfffb | | server | Ext | | | | 1 | 1 | 65534 | => AttributeList [array]",
" 0xfffc | | server | RAM | | | 0 | 1 | 1 | 65534 | => FeatureMap [bitmap32]",
" 0xfffd | | server | RAM | | | 1 | 1 | | 65344 | => ClusterRevision [int16u]"
]
},
{
"name": "Group Key Management",
"code": "0x003f",
"define": "GROUP_KEY_MANAGEMENT_CLUSTER",
"side": "server",
"enabled": 1,
"commands": [
" code | mfgCode | source | incoming | outgoing",
"0x0002 | | server | 0 | 1 => KeySetReadResponse",
"0x0005 | | server | 0 | 1 => KeySetReadAllIndicesResponse"
],
"attributes": [
" code | mfgCode | side | storageOption | singleton | bounded | defaultValue | reportable | minInterval | maxInterval | reportableChange",
" 0x0000 | | server | Ext | | | | 1 | | 65344 | => GroupKeyMap [array]",
" 0x0001 | | server | Ext | | | | 1 | | 65344 | => GroupTable [array]",
" 0x0002 | | server | Ext | | | | 1 | 1 | 65534 | => MaxGroupsPerFabric [int16u]",
" 0x0003 | | server | Ext | | | | 1 | 1 | 65534 | => MaxGroupKeysPerFabric [int16u]",
" 0xfff8 | | server | Ext | | | | 1 | 1 | 65534 | => GeneratedCommandList [array]",
" 0xfff9 | | server | Ext | | | | 1 | 1 | 65534 | => AcceptedCommandList [array]",
" 0xfffa | | server | Ext | | | | 1 | 1 | 65534 | => EventList [array]",
" 0xfffb | | server | Ext | | | | 1 | 1 | 65534 | => AttributeList [array]",
" 0xfffc | | server | RAM | | | 0 | 1 | 1 | 65534 | => FeatureMap [bitmap32]",
" 0xfffd | | server | RAM | | | 1 | 1 | | 65344 | => ClusterRevision [int16u]"
]
},
{
"name": "Fixed Label",
"code": "0x0040",
"define": "FIXED_LABEL_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
" code | mfgCode | side | storageOption | singleton | bounded | defaultValue | reportable | minInterval | maxInterval | reportableChange",
" 0x0000 | | server | Ext | | | | 1 | 1 | 65534 | => LabelList [array]",
" 0xfffc | | server | RAM | | | 0 | 1 | 1 | 65534 | => FeatureMap [bitmap32]",
" 0xfffd | | server | RAM | | | 1 | 1 | 1 | 65534 | => ClusterRevision [int16u]"
]
},
{
"name": "User Label",
"code": "0x0041",
"define": "USER_LABEL_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
" code | mfgCode | side | storageOption | singleton | bounded | defaultValue | reportable | minInterval | maxInterval | reportableChange",
" 0x0000 | | server | Ext | | | | 1 | 1 | 65534 | => LabelList [array]",
" 0xfffc | | server | RAM | | | 0 | 1 | 1 | 65534 | => FeatureMap [bitmap32]",
" 0xfffd | | server | RAM | | | 1 | 1 | 1 | 65534 | => ClusterRevision [int16u]"
]
},
{
"name": "ICD Management",
"code": "0x0046",
"define": "ICD_MANAGEMENT_CLUSTER",
"side": "server",
"enabled": 1,
"commands": [
" code | mfgCode | source | incoming | outgoing",
"0x0001 | | server | 1 | 1 => RegisterClientResponse"
],
"attributes": [
" code | mfgCode | side | storageOption | singleton | bounded | defaultValue | reportable | minInterval | maxInterval | reportableChange",
" 0x0000 | | server | Ext | | | 500 | 1 | 1 | 65534 | => IdleModeInterval [int32u]",
" 0x0001 | | server | Ext | | | 300 | 1 | 1 | 65534 | => ActiveModeInterval [int32u]",
" 0x0002 | | server | Ext | | | 300 | 1 | 1 | 65534 | => ActiveModeThreshold [int16u]",
" 0x0003 | | server | Ext | | | | 1 | 1 | 65534 | => RegisteredClients [array]",
" 0x0004 | | server | Ext | | | 0 | 1 | 1 | 65534 | => ICDCounter [int32u]",
" 0x0005 | | server | Ext | | | 2 | 1 | 1 | 65534 | => ClientsSupportedPerFabric [int16u]",
" 0xfff8 | | server | Ext | | | | 1 | 1 | 65534 | => GeneratedCommandList [array]",
" 0xfff9 | | server | Ext | | | | 1 | 1 | 65534 | => AcceptedCommandList [array]",
" 0xfffb | | server | Ext | | | | 1 | 1 | 65534 | => AttributeList [array]",
" 0xfffc | | server | RAM | | | 1 | 1 | 1 | 65534 | => FeatureMap [bitmap32]",
" 0xfffd | | server | RAM | | | 1 | 1 | 1 | 65534 | => ClusterRevision [int16u]"
]
},
{
"name": "Relative Humidity Measurement",
"code": "0x0405",
"define": "RELATIVE_HUMIDITY_MEASUREMENT_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
" code | mfgCode | side | storageOption | singleton | bounded | defaultValue | reportable | minInterval | maxInterval | reportableChange",
" 0x0000 | | server | RAM | | | | 1 | | 65344 | => MeasuredValue [int16u]",
" 0x0001 | | server | RAM | | | 0 | 1 | | 65344 | => MinMeasuredValue [int16u]",
" 0x0002 | | server | RAM | | | 0x2710 | 1 | | 65344 | => MaxMeasuredValue [int16u]",
" 0xfffc | | server | RAM | | | 0 | 1 | 1 | 65534 | => FeatureMap [bitmap32]",
" 0xfffd | | server | RAM | | | 3 | 1 | | 65344 | => ClusterRevision [int16u]"
]
},
{
"name": "Fault Injection",
"code": "0xfff1fc06",
"define": "FAULT_INJECTION_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
" code | mfgCode | side | storageOption | singleton | bounded | defaultValue | reportable | minInterval | maxInterval | reportableChange",
" 0xfff8 | | server | Ext | | | | 1 | 1 | 65534 | => GeneratedCommandList [array]",
" 0xfff9 | | server | Ext | | | | 1 | 1 | 65534 | => AcceptedCommandList [array]",
" 0xfffb | | server | Ext | | | | 1 | 1 | 65534 | => AttributeList [array]",
" 0xfffc | | server | RAM | | | 0 | 1 | 1 | 65534 | => FeatureMap [bitmap32]",
" 0xfffd | | server | RAM | | | 1 | 1 | 1 | 65534 | => ClusterRevision [int16u]"
]
}
]
},
{
"id": 2,
"name": "MA-onofflight",
"deviceTypeRef": {
"code": 256,
"profileId": 259,
"label": "MA-onofflight",
"name": "MA-onofflight"
},
"deviceTypes": [
{
"code": 256,
"profileId": 259,
"label": "MA-onofflight",
"name": "MA-onofflight"
},
{
"code": 17,
"profileId": 259,
"label": "MA-powersource",
"name": "MA-powersource"
}
],
"deviceVersions": [
1,
1
],
"deviceIdentifiers": [
256,
17
],
"deviceTypeName": "MA-onofflight",
"deviceTypeCode": 256,
"deviceTypeProfileId": 259,
"clusters": [
{
"name": "Identify",
"code": "0x0003",
"define": "IDENTIFY_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
" code | mfgCode | side | storageOption | singleton | bounded | defaultValue | reportable | minInterval | maxInterval | reportableChange",
" 0x0000 | | server | RAM | | | 0x0000 | 1 | | 65344 | => IdentifyTime [int16u]",
" 0x0001 | | server | RAM | | | 0x0 | 1 | | 65344 | => IdentifyType [IdentifyTypeEnum]",
" 0xfff8 | | server | Ext | | | | 1 | 1 | 65534 | => GeneratedCommandList [array]",
" 0xfff9 | | server | Ext | | | | 1 | 1 | 65534 | => AcceptedCommandList [array]",
" 0xfffa | | server | Ext | | | | 1 | 1 | 65534 | => EventList [array]",
" 0xfffb | | server | Ext | | | | 1 | 1 | 65534 | => AttributeList [array]",
" 0xfffc | | server | RAM | | | 0 | 1 | 1 | 65534 | => FeatureMap [bitmap32]",
" 0xfffd | | server | RAM | | | 4 | 1 | | 65344 | => ClusterRevision [int16u]"
]
},
{
"name": "Groups",
"code": "0x0004",
"define": "GROUPS_CLUSTER",
"side": "server",
"enabled": 1,
"commands": [
" code | mfgCode | source | incoming | outgoing",
"0x0000 | | server | 1 | 1 => AddGroupResponse",
"0x0001 | | server | 1 | 1 => ViewGroupResponse",
"0x0002 | | server | 1 | 1 => GetGroupMembershipResponse",
"0x0003 | | server | 1 | 1 => RemoveGroupResponse"
],
"attributes": [
" code | mfgCode | side | storageOption | singleton | bounded | defaultValue | reportable | minInterval | maxInterval | reportableChange",
" 0x0000 | | server | RAM | | | | 1 | | 65344 | => NameSupport [NameSupportBitmap]",
" 0xfff8 | | server | Ext | | | | 1 | 1 | 65534 | => GeneratedCommandList [array]",
" 0xfff9 | | server | Ext | | | | 1 | 1 | 65534 | => AcceptedCommandList [array]",
" 0xfffa | | server | Ext | | | | 1 | 1 | 65534 | => EventList [array]",
" 0xfffb | | server | Ext | | | | 1 | 1 | 65534 | => AttributeList [array]",
" 0xfffc | | server | RAM | | | 0 | 1 | 1 | 65534 | => FeatureMap [bitmap32]",
" 0xfffd | | server | RAM | | | 4 | 1 | | 65344 | => ClusterRevision [int16u]"
]
},
{
"name": "Scenes",
"code": "0x0005",
"define": "SCENES_CLUSTER",
"side": "server",
"enabled": 1,
"commands": [
" code | mfgCode | source | incoming | outgoing",
"0x0000 | | server | 1 | 1 => AddSceneResponse",
"0x0001 | | server | 1 | 1 => ViewSceneResponse",
"0x0002 | | server | 1 | 1 => RemoveSceneResponse",
"0x0003 | | server | 1 | 1 => RemoveAllScenesResponse",
"0x0004 | | server | 1 | 1 => StoreSceneResponse",
"0x0006 | | server | 1 | 1 => GetSceneMembershipResponse"
],
"attributes": [
" code | mfgCode | side | storageOption | singleton | bounded | defaultValue | reportable | minInterval | maxInterval | reportableChange",
" 0x0000 | | server | Ext | | | 0x00 | 1 | | 65344 | => SceneCount [int8u]",
" 0x0001 | | server | RAM | | | 0x00 | 1 | | 65344 | => CurrentScene [int8u]",
" 0x0002 | | server | RAM | | | 0x0000 | 1 | | 65344 | => CurrentGroup [group_id]",
" 0x0003 | | server | RAM | | | 0x00 | 1 | | 65344 | => SceneValid [boolean]",
" 0x0004 | | server | RAM | | | | 1 | | 65344 | => NameSupport [bitmap8]",
" 0x0005 | | server | RAM | | | | 1 | 1 | 65534 | => LastConfiguredBy [node_id]",
" 0x0006 | | server | RAM | | | | 1 | 1 | 65534 | => SceneTableSize [int16u]",
" 0x0007 | | server | Ext | | | | 1 | 1 | 65534 | => RemainingCapacity [int8u]",
" 0xfff8 | | server | Ext | | | | 1 | 1 | 65534 | => GeneratedCommandList [array]",
" 0xfff9 | | server | Ext | | | | 1 | 1 | 65534 | => AcceptedCommandList [array]",
" 0xfffa | | server | Ext | | | | 1 | 1 | 65534 | => EventList [array]",
" 0xfffb | | server | Ext | | | | 1 | 1 | 65534 | => AttributeList [array]",
" 0xfffc | | server | RAM | | | 0 | 1 | 1 | 65534 | => FeatureMap [bitmap32]",
" 0xfffd | | server | RAM | | | 5 | 1 | | 65344 | => ClusterRevision [int16u]"
]
},
{
"name": "On/Off",
"code": "0x0006",
"define": "ON_OFF_CLUSTER",
"side": "client",
"enabled": 1,
"commands": [
" code | mfgCode | source | incoming | outgoing",
"0x0000 | | client | 1 | 1 => Off",
"0x0001 | | client | 1 | 1 => On",
"0x0002 | | client | 1 | 1 => Toggle",
"0x0040 | | client | 1 | 0 => OffWithEffect",
"0x0041 | | client | 1 | 0 => OnWithRecallGlobalScene",
"0x0042 | | client | 1 | 0 => OnWithTimedOff"
],
"attributes": [
" code | mfgCode | side | storageOption | singleton | bounded | defaultValue | reportable | minInterval | maxInterval | reportableChange",
" 0xfffc | | client | RAM | | | 0 | 1 | 1 | 65534 | => FeatureMap [bitmap32]",
" 0xfffd | | client | RAM | | | 5 | 1 | | 65344 | => ClusterRevision [int16u]"
]
},
{
"name": "On/Off",
"code": "0x0006",
"define": "ON_OFF_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
" code | mfgCode | side | storageOption | singleton | bounded | defaultValue | reportable | minInterval | maxInterval | reportableChange",
" 0x0000 | | server | NVM | | | 0x00 | 1 | | 65344 | => OnOff [boolean]",
" 0x4000 | | server | RAM | | | 0x01 | 1 | | 65344 | => GlobalSceneControl [boolean]",
" 0x4001 | | server | RAM | | | 0x0000 | 1 | | 65344 | => OnTime [int16u]",
" 0x4002 | | server | RAM | | | 0x0000 | 1 | | 65344 | => OffWaitTime [int16u]",
" 0x4003 | | server | NVM | | | 0xFF | 1 | | 65344 | => StartUpOnOff [OnOffStartUpOnOff]",
" 0xfff8 | | server | Ext | | | | 1 | 1 | 65534 | => GeneratedCommandList [array]",
" 0xfff9 | | server | Ext | | | | 1 | 1 | 65534 | => AcceptedCommandList [array]",
" 0xfffa | | server | Ext | | | | 1 | 1 | 65534 | => EventList [array]",
" 0xfffb | | server | Ext | | | | 1 | 1 | 65534 | => AttributeList [array]",
" 0xfffc | | server | RAM | | | 0x0001 | 1 | | 65344 | => FeatureMap [bitmap32]",
" 0xfffd | | server | RAM | | | 5 | 1 | | 65344 | => ClusterRevision [int16u]"
]
},
{
"name": "On/off Switch Configuration",
"code": "0x0007",
"define": "ON_OFF_SWITCH_CONFIGURATION_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
" code | mfgCode | side | storageOption | singleton | bounded | defaultValue | reportable | minInterval | maxInterval | reportableChange",
" 0x0000 | | server | RAM | | | | 1 | | 65344 | => switch type [enum8]",
" 0x0010 | | server | RAM | | | 0x00 | 1 | | 65344 | => switch actions [enum8]",
" 0xfffc | | server | RAM | | | 0 | 1 | 1 | 65534 | => FeatureMap [bitmap32]",
" 0xfffd | | server | RAM | | | 1 | 1 | | 65344 | => ClusterRevision [int16u]"
]
},
{
"name": "Level Control",
"code": "0x0008",
"define": "LEVEL_CONTROL_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
" code | mfgCode | side | storageOption | singleton | bounded | defaultValue | reportable | minInterval | maxInterval | reportableChange",
" 0x0000 | | server | NVM | | | 0xFE | 1 | | 65344 | => CurrentLevel [int8u]",
" 0x0001 | | server | RAM | | | 0x0000 | 1 | | 65344 | => RemainingTime [int16u]",
" 0x0002 | | server | RAM | | | 0x01 | 1 | 1 | 65534 | => MinLevel [int8u]",
" 0x0003 | | server | RAM | | | 0xFE | 1 | 1 | 65534 | => MaxLevel [int8u]",
" 0x0004 | | server | RAM | | | 0x0000 | 1 | 1 | 65534 | => CurrentFrequency [int16u]",
" 0x0005 | | server | RAM | | | 0x0000 | 1 | 1 | 65534 | => MinFrequency [int16u]",
" 0x0006 | | server | RAM | | | 0x0000 | 1 | 1 | 65534 | => MaxFrequency [int16u]",
" 0x000f | | server | RAM | | | 0x00 | 1 | | 65344 | => Options [LevelControlOptions]",
" 0x0010 | | server | RAM | | | 0x0000 | 1 | 1 | 65534 | => OnOffTransitionTime [int16u]",
" 0x0011 | | server | RAM | | | 0xFF | 1 | 1 | 65534 | => OnLevel [int8u]",
" 0x0012 | | server | RAM | | | | 1 | 1 | 65534 | => OnTransitionTime [int16u]",
" 0x0013 | | server | RAM | | | | 1 | 1 | 65534 | => OffTransitionTime [int16u]",
" 0x0014 | | server | RAM | | | 50 | 1 | 1 | 65534 | => DefaultMoveRate [int8u]",
" 0x4000 | | server | NVM | | | 255 | 1 | | 65344 | => StartUpCurrentLevel [int8u]",
" 0xfffc | | server | RAM | | | 3 | 1 | 1 | 65534 | => FeatureMap [bitmap32]",
" 0xfffd | | server | RAM | | | 5 | 1 | | 65344 | => ClusterRevision [int16u]"
]
},
{
"name": "Binary Input (Basic)",
"code": "0x000f",
"define": "BINARY_INPUT_BASIC_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
" code | mfgCode | side | storageOption | singleton | bounded | defaultValue | reportable | minInterval | maxInterval | reportableChange",
" 0x0051 | | server | RAM | | | 0x00 | 1 | | 65344 | => out of service [boolean]",
" 0x0055 | | server | RAM | | | | 1 | | 65344 | => present value [boolean]",
" 0x006f | | server | RAM | | | 0x00 | 1 | | 65344 | => status flags [bitmap8]",
" 0xfffc | | server | RAM | | | 0 | 1 | 1 | 65534 | => FeatureMap [bitmap32]",
" 0xfffd | | server | RAM | | | 1 | 1 | | 65344 | => ClusterRevision [int16u]"
]
},
{
"name": "Descriptor",
"code": "0x001d",
"define": "DESCRIPTOR_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
" code | mfgCode | side | storageOption | singleton | bounded | defaultValue | reportable | minInterval | maxInterval | reportableChange",
" 0x0000 | | server | Ext | | | | 1 | | 65344 | => DeviceTypeList [array]",
" 0x0001 | | server | Ext | | | | 1 | | 65344 | => ServerList [array]",
" 0x0002 | | server | Ext | | | | 1 | | 65344 | => ClientList [array]",
" 0x0003 | | server | Ext | | | | 1 | | 65344 | => PartsList [array]",
" 0x0004 | | server | Ext | | | | 1 | 1 | 65534 | => TagList [array]",
" 0xfff8 | | server | Ext | | | | 1 | 1 | 65534 | => GeneratedCommandList [array]",
" 0xfff9 | | server | Ext | | | | 1 | 1 | 65534 | => AcceptedCommandList [array]",
" 0xfffa | | server | Ext | | | | 1 | 1 | 65534 | => EventList [array]",
" 0xfffb | | server | Ext | | | | 1 | 1 | 65534 | => AttributeList [array]",
" 0xfffc | | server | RAM | | | 0 | 1 | 1 | 65534 | => FeatureMap [bitmap32]",
" 0xfffd | | server | Ext | | | 2 | 1 | | 65344 | => ClusterRevision [int16u]"
]