-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1643 lines (1065 loc) · 55.2 KB
/
index.html
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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.3/css/bootstrap.min.css" integrity="sha384-Zug+QiDoJOrZ5t4lssLdxGhVrurbmBWopoEl+M6BdEfwnCJZtKxi1KgxUyJq13dy" crossorigin="anonymous">
<title>Hello, world!</title>
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-3">
<div class="sticky-top" id="nav" style="height: calc(100vh - 3rem); overflow-y: auto">
<h5 style="height: 2rem;" clas="mb-0">Contents</h5>
<nav class="nav navbar-light navbar-light bg-light">
<nav class="nav flex-column">
<a href="#tables" class="nav-link">Tables</a>
<nav class="nav flex-column">
<a href="#tables-Clusters" class="ml-4 nav-link">Clusters</a>
<a href="#tables-Enumerations" class="ml-4 nav-link">Enumerations</a>
<a href="#Basic" class="nav-link">Basic<a/>
<nav class="nav flex-column">
<a
class="nav-link ml-4"
href="#Basic-Request_Version"
>Request Version</a>
<a
class="nav-link ml-4"
href="#Basic-Set_Channel_Mask"
>Set Channel Mask</a>
<a
class="nav-link ml-4"
href="#Basic-Set_Device_Type"
>Set Device Type</a>
<a
class="nav-link ml-4"
href="#Basic-Start_Network"
>Start Network</a>
<a
class="nav-link ml-4"
href="#Basic-Network_Address_Request"
>Network Address Request</a>
<a
class="nav-link ml-4"
href="#Basic-IEEE_Address_Request"
>IEEE Address Request</a>
<a
class="nav-link ml-4"
href="#Basic-Node_Descriptor_request"
>Node Descriptor request</a>
<a
class="nav-link ml-4"
href="#Basic-Node_Descriptor_request"
>Node Descriptor request</a>
</nav>
<a href="#Responses" class="nav-link">Responses<a/>
<nav class="nav flex-column">
<a
class="nav-link ml-4"
href="#Responses-Status"
>Status</a>
<a
class="nav-link ml-4"
href="#Responses-Node_Descriptor_response"
>Node Descriptor response</a>
</nav>
</nav>
</nav>
</div>
</div>
<div class="col-9">
<div>
<a name="tables"></a>
<h2 id="tables">Tables</h2>
<a name="tables-Clusters"></a>
<h3 id="tables-Clusters">Clusters</h3>
<p>This table lists all Zigbee clusters that are supported by Zigate. Refer to the <span class="text-nowrap">
<a href="http://www.zigbee.org/~zigbeeor/wp-content/uploads/2014/10/07-5123-06-zigbee-cluster-library-specification.pdf" target="_blank">Zigbee Cluser Library</a></span> specification for details.</p>
<table class="table">
<thead>
<tr class="text-light bg-primary">
<th class="text-nowrap">
Cluster ID
</th>
<th class="text-nowrap">
Name
</th>
<th>
Description
</th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-nowrap"><code>0x0000</code></td>
<td class="text-nowrap">Basic
<div class="small">
(<span class="text-nowrap">ZCL, p.
<a href="http://www.zigbee.org/~zigbeeor/wp-content/uploads/2014/10/07-5123-06-zigbee-cluster-library-specification.pdf#page=97" target="_blank">3-1</a></span>)
</div>
</td>
<td>Attributes for determining basic information about a device, setting user device information such as desc of location, and enabling a device.
</td>
</tr>
<tr>
<td class="text-nowrap"><code>0x0001</code></td>
<td class="text-nowrap">Power configuration
<div class="small">
(<span class="text-nowrap">ZCL, p.
<a href="http://www.zigbee.org/~zigbeeor/wp-content/uploads/2014/10/07-5123-06-zigbee-cluster-library-specification.pdf#page=97" target="_blank">3-1</a></span>)
</div>
</td>
<td>Attributes for determining more detailed information about a device’s power source(s), and for configuring under/over voltage alarms.
</td>
</tr>
<tr>
<td class="text-nowrap"><code>0x0002</code></td>
<td class="text-nowrap">Device temperature configuration
<div class="small">
(<span class="text-nowrap">ZCL, p.
<a href="http://www.zigbee.org/~zigbeeor/wp-content/uploads/2014/10/07-5123-06-zigbee-cluster-library-specification.pdf#page=97" target="_blank">3-1</a></span>)
</div>
</td>
<td>Attributes for determining information about a device’s internal temperature, and for configuring under/over temperature alarms.
</td>
</tr>
<tr>
<td class="text-nowrap"><code>0x0003</code></td>
<td class="text-nowrap">Identify
<div class="small">
(<span class="text-nowrap">ZCL, p.
<a href="http://www.zigbee.org/~zigbeeor/wp-content/uploads/2014/10/07-5123-06-zigbee-cluster-library-specification.pdf#page=97" target="_blank">3-1</a></span>)
</div>
</td>
<td>Attributes and commands for putting a device into Identification mode (e.g., flashing a light)
</td>
</tr>
<tr>
<td class="text-nowrap"><code>0x0004</code></td>
<td class="text-nowrap">Groups
<div class="small">
(<span class="text-nowrap">ZCL, p.
<a href="http://www.zigbee.org/~zigbeeor/wp-content/uploads/2014/10/07-5123-06-zigbee-cluster-library-specification.pdf#page=98" target="_blank">3-2</a></span>)
</div>
</td>
<td>Attributes and commands for allocating a device to one or more of a number of groups of devices, where each group is addressable by a group address.
</td>
</tr>
<tr>
<td class="text-nowrap"><code>0x0005</code></td>
<td class="text-nowrap">Scenes
<div class="small">
(<span class="text-nowrap">ZCL, p.
<a href="http://www.zigbee.org/~zigbeeor/wp-content/uploads/2014/10/07-5123-06-zigbee-cluster-library-specification.pdf#page=98" target="_blank">3-2</a></span>)
</div>
</td>
<td>Attributes and commands for setting up and recalling a number of scenes for a device. Each scene corresponds to a set of stored values of specified device attributes.
</td>
</tr>
<tr>
<td class="text-nowrap"><code>0x0006</code></td>
<td class="text-nowrap">On/Off
<div class="small">
(<span class="text-nowrap">ZCL, p.
<a href="http://www.zigbee.org/~zigbeeor/wp-content/uploads/2014/10/07-5123-06-zigbee-cluster-library-specification.pdf#page=98" target="_blank">3-2</a></span>)
</div>
</td>
<td>Attributes and commands for switching devices between ‘On’ and ‘Off’ states.</td>
</tr>
<tr>
<td class="text-nowrap"><code>0x0007</code></td>
<td class="text-nowrap">On/Off switch configuration
<div class="small">
(<span class="text-nowrap">ZCL, p.
<a href="http://www.zigbee.org/~zigbeeor/wp-content/uploads/2014/10/07-5123-06-zigbee-cluster-library-specification.pdf#page=98" target="_blank">3-2</a></span>)
</div>
</td>
<td>Attributes and commands for configuring on/off switching devices.</td>
</tr>
<tr>
<td class="text-nowrap"><code>0x0008</code></td>
<td class="text-nowrap">Level Control
<div class="small">
(<span class="text-nowrap">ZCL, p.
<a href="http://www.zigbee.org/~zigbeeor/wp-content/uploads/2014/10/07-5123-06-zigbee-cluster-library-specification.pdf#page=98" target="_blank">3-2</a></span>)
</div>
</td>
<td>Attributes and commands for controlling a characteristic of devices that can be set to a level between fully ‘On’ and fully ‘Off’.
</td>
</tr>
<tr>
<td class="text-nowrap"><code>0x0009</code></td>
<td class="text-nowrap">Alarms
<div class="small">
(<span class="text-nowrap">ZCL, p.
<a href="http://www.zigbee.org/~zigbeeor/wp-content/uploads/2014/10/07-5123-06-zigbee-cluster-library-specification.pdf#page=99" target="_blank">3-3</a></span>)
</div>
</td>
<td>Attributes and commands for sending alarm notifications and configuring alarm functionality.
</td>
</tr>
<tr>
<td class="text-nowrap"><code>0x000a</code></td>
<td class="text-nowrap">Time
<div class="small">
(<span class="text-nowrap">ZCL, p.
<a href="http://www.zigbee.org/~zigbeeor/wp-content/uploads/2014/10/07-5123-06-zigbee-cluster-library-specification.pdf#page=99" target="_blank">3-3</a></span>)
</div>
</td>
<td>Attributes and commands that provide an interface to a real-time clock.</td>
</tr>
<tr>
<td class="text-nowrap"><code>0x000f</code></td>
<td class="text-nowrap">Binary Input (basic)
<div class="small">
(<span class="text-nowrap">ZCL, p.
<a href="http://www.zigbee.org/~zigbeeor/wp-content/uploads/2014/10/07-5123-06-zigbee-cluster-library-specification.pdf#page=100" target="_blank">3-4</a></span>)
</div>
</td>
<td>An interface for reading the value of a binary measurement and accessing various characteristics of that measurement.
</td>
</tr>
<tr>
<td class="text-nowrap"><code>0x0019</code></td>
<td class="text-nowrap">OTA </td>
<td>An interface for setting the value of a binary output (typically to the environment) and accessing various characteristics of that value.
</td>
</tr>
<tr>
<td class="text-nowrap"><code>0x0020</code></td>
<td class="text-nowrap">Poll Control
<div class="small">
(<span class="text-nowrap">ZCL, p.
<a href="http://www.zigbee.org/~zigbeeor/wp-content/uploads/2014/10/07-5123-06-zigbee-cluster-library-specification.pdf#page=239" target="_blank">3-143</a></span>)
</div>
</td>
<td></td>
</tr>
<tr>
<td class="text-nowrap"><code>0x0101</code></td>
<td class="text-nowrap">Door Lock
<div class="small">
(<span class="text-nowrap">ZCL, p.
<a href="http://www.zigbee.org/~zigbeeor/wp-content/uploads/2014/10/07-5123-06-zigbee-cluster-library-specification.pdf#page=399" target="_blank">7-1</a></span>)
</div>
</td>
<td>An interface to a generic way to secure a door.</td>
</tr>
<tr>
<td class="text-nowrap"><code>0x0201</code></td>
<td class="text-nowrap">Thermostat
<div class="small">
(<span class="text-nowrap">ZCL, p.
<a href="http://www.zigbee.org/~zigbeeor/wp-content/uploads/2014/10/07-5123-06-zigbee-cluster-library-specification.pdf#page=359" target="_blank">6-1</a></span>)
</div>
</td>
<td>An interface for configuring and controlling the functionality of a thermostat.</td>
</tr>
<tr>
<td class="text-nowrap"><code>0x0202</code></td>
<td class="text-nowrap">Fan control
<div class="small">
(<span class="text-nowrap">ZCL, p.
<a href="http://www.zigbee.org/~zigbeeor/wp-content/uploads/2014/10/07-5123-06-zigbee-cluster-library-specification.pdf#page=359" target="_blank">6-1</a></span>)
</div>
</td>
<td>An interface for controlling a fan in a heating / cooling system.</td>
</tr>
<tr>
<td class="text-nowrap"><code>0x0300</code></td>
<td class="text-nowrap">Color control
<div class="small">
(<span class="text-nowrap">ZCL, p.
<a href="http://www.zigbee.org/~zigbeeor/wp-content/uploads/2014/10/07-5123-06-zigbee-cluster-library-specification.pdf#page=323" target="_blank">5-1</a></span>)
</div>
</td>
<td>Attributes and commands for controlling the color of a color-capable light.</td>
</tr>
<tr>
<td class="text-nowrap"><code>0x0400</code></td>
<td class="text-nowrap">Illuminance measurement
<div class="small">
(<span class="text-nowrap">ZCL, p.
<a href="http://www.zigbee.org/~zigbeeor/wp-content/uploads/2014/10/07-5123-06-zigbee-cluster-library-specification.pdf#page=277" target="_blank">4-1</a></span>)
</div>
</td>
<td>Attributes and commands for configuring the measurement of illuminance, and reporting illuminance measurements
</td>
</tr>
<tr>
<td class="text-nowrap"><code>0x0402</code></td>
<td class="text-nowrap">Temperature measurement
<div class="small">
(<span class="text-nowrap">ZCL, p.
<a href="http://www.zigbee.org/~zigbeeor/wp-content/uploads/2014/10/07-5123-06-zigbee-cluster-library-specification.pdf#page=278" target="_blank">4-2</a></span>)
</div>
</td>
<td>Attributes and commands for configuring the meas- urement of temperature, and reporting temPressure Measurement
</td>
</tr>
<tr>
<td class="text-nowrap"><code>0x0405</code></td>
<td class="text-nowrap">Measurement: Humidity
<div class="small">
(<span class="text-nowrap">ZCL, p.
<a href="http://www.zigbee.org/~zigbeeor/wp-content/uploads/2014/10/07-5123-06-zigbee-cluster-library-specification.pdf#page=278" target="_blank">4-2</a></span>)
</div>
</td>
<td>Attributes and commands for configuring the meas- urement of pressure, and reporting pressure measurements.
</td>
</tr>
<tr>
<td class="text-nowrap"><code>0x0500</code></td>
<td class="text-nowrap">IAS Zone
<div class="small">
(<span class="text-nowrap">ZCL, p.
<a href="http://www.zigbee.org/~zigbeeor/wp-content/uploads/2014/10/07-5123-06-zigbee-cluster-library-specification.pdf#page=457" target="_blank">457</a></span>)
</div>
</td>
<td></td>
</tr>
<tr>
<td class="text-nowrap"><code>0x0702</code></td>
<td class="text-nowrap">Metering
<div class="small">
(<span class="text-nowrap">ZCL, p.
<a href="http://www.zigbee.org/~zigbeeor/wp-content/uploads/2014/10/07-5123-06-zigbee-cluster-library-specification.pdf#page=543" target="_blank">10-1</a></span>)
</div>
</td>
<td>Commands and attributes for reporting metering data.</td>
</tr>
<tr>
<td class="text-nowrap"><code>0x0b05</code></td>
<td class="text-nowrap">Diagnostics
<div class="small">
(<span class="text-nowrap">ZCL, p.
<a href="http://www.zigbee.org/~zigbeeor/wp-content/uploads/2014/10/07-5123-06-zigbee-cluster-library-specification.pdf#page=100" target="_blank">3-4</a></span>)
</div>
</td>
<td>Attributes and commands that provide an interface to diagnostics of the ZigBee stack.
</td>
</tr>
<tr>
<td class="text-nowrap"><code>0x1000</code></td>
<td class="text-nowrap">Touchlink commissioning </td>
<td></td>
</tr>
<tr>
<td class="text-nowrap"><code>0xff01</code></td>
<td class="text-nowrap">Xiaomi proprietary </td>
<td></td>
</tr>
<tr>
<td class="text-nowrap"><code>0xff02</code></td>
<td class="text-nowrap">Xiaomi proprietary </td>
<td></td>
</tr>
</tbody>
</table>
<a name="tables-Enumerations"></a>
<h3 id="tables-Enumerations">Enumerations</h3>
<p>This table explains the meaning of the enumerations used in the ZDP. For more information refer to <span class="text-nowrap">Spec., p.
<a href="http://www.zigbee.org/wp-content/uploads/2014/11/docs-05-3474-20-0csg-zigbee-specification.pdf#page=242" target="_blank">214</a></span>.</p>
<table class="table">
<thead>
<tr class="text-light bg-primary">
<th class="text-nowrap">
Enumeration
</th>
<th class="text-nowrap">
Value
</th>
<th>
Description
</th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-nowrap"><code>SUCCESS</code></td>
<td class="text-nowrap"><code>0x0000</code></td>
<td>The requested operation or transmission was completed successfully.</td>
</tr>
<tr>
<td class="text-nowrap"><code>INV_REQUESTTYPE</code></td>
<td class="text-nowrap"><code>0x0080</code></td>
<td>The supplied request type was invalid.</td>
</tr>
<tr>
<td class="text-nowrap"><code>DEVICE_NOT_FOUND</code></td>
<td class="text-nowrap"><code>0x0081</code></td>
<td>The requested device did not exist on a device following a child descriptor request to a parent.
</td>
</tr>
<tr>
<td class="text-nowrap"><code>INVALID_EP</code></td>
<td class="text-nowrap"><code>0x0082</code></td>
<td>The supplied endpoint was equal to 0x00 or 0xff.</td>
</tr>
<tr>
<td class="text-nowrap"><code>NOT_ACTIVE</code></td>
<td class="text-nowrap"><code>0x0083</code></td>
<td>The requested endpoint is not described by a simple descriptor.</td>
</tr>
<tr>
<td class="text-nowrap"><code>NOT_SUPPORTED</code></td>
<td class="text-nowrap"><code>0x0084</code></td>
<td>The requested optional feature is not supported on the target device.</td>
</tr>
<tr>
<td class="text-nowrap"><code>TIMEOUT</code></td>
<td class="text-nowrap"><code>0x0085</code></td>
<td>A timeout has occurred with the requested operation.</td>
</tr>
<tr>
<td class="text-nowrap"><code>NO_MATCH</code></td>
<td class="text-nowrap"><code>0x0086</code></td>
<td>The end device bind request was unsuccessful due to a failure to match any suitable clusters.
</td>
</tr>
<tr>
<td class="text-nowrap"><code>NO_ENTRY</code></td>
<td class="text-nowrap"><code>0x0088</code></td>
<td>The unbind request was unsuccessful due to the coordinator or source device not having an entry in its binding table to unbind.
</td>
</tr>
<tr>
<td class="text-nowrap"><code>NO_DESCRIPTOR</code></td>
<td class="text-nowrap"><code>0x0089</code></td>
<td>A child descriptor was not available following a discovery request to a parent.</td>
</tr>
<tr>
<td class="text-nowrap"><code>INSUFFICIENT_SPACE</code></td>
<td class="text-nowrap"><code>0x008a</code></td>
<td>The device does not have storage space to support the requested operation.</td>
</tr>
<tr>
<td class="text-nowrap"><code>NOT_PERMITTED</code></td>
<td class="text-nowrap"><code>0x008b</code></td>
<td>The device is not in the proper state to support the requested operation.</td>
</tr>
<tr>
<td class="text-nowrap"><code>TABLE_FULL</code></td>
<td class="text-nowrap"><code>0x008e</code></td>
<td>The device does not have table space to support the operation.</td>
</tr>
<tr>
<td class="text-nowrap"><code>NOT_AUTHORIZED</code></td>
<td class="text-nowrap"><code>0x008d</code></td>
<td>The permissions configuration table on the target indicates that the request is not authorized from this device.
</td>
</tr>
<tr>
<td class="text-nowrap"><code>DEVICE_BINDING_TABLE_FULL</code></td>
<td class="text-nowrap"><code>0x008e</code></td>
<td>The device does not have binding table space to support the operation.</td>
</tr>
</tbody>
</table>
<h2>Commands</h2>
<table class="table my-5">
<thead>
<tr class="bg-dark text-light">
<th colspan="5">
<a name="Basic"></a>
<h3 id="Basic">Basic</h3>
</th>
</tr>
<tr class="text-light bg-primary">
<th style="width: 350px">Request</th>
<th>Parameters</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<a name="Basic-Request_Version"></a>
<h5 class="text-nowrap">Request Version</h5>
<p class="texxt-nowrap">
<code class="text-nowrap"><strong>0x0010</strong></code>
</p>
<p class="small">
<strong>Response:</strong>
<a href="#Responses-Status">Status</a>,
<a href="#Responses-Version">Version</a>
</p>
</td>
<td>
</td>
</tr>
<tr>
<td>
<a name="Basic-Set_Channel_Mask"></a>
<h5 class="text-nowrap">Set Channel Mask</h5>
<p class="texxt-nowrap">
<code class="text-nowrap"><strong>0x0021</strong></code>
</p>
<p class="small">
<strong>Response:</strong>
<a href="#Responses-Status">Status</a>
</p>
</td>
<td>
<div class="row mt-3">
<div class="col-8"><code class="text-dark text-nowrap">Channel mask</code></div>
<div class="col-4"><code>uint32_t</code></div>
</div>
</td>
</tr>
<tr>
<td>
<a name="Basic-Set_Device_Type"></a>
<h5 class="text-nowrap">Set Device Type</h5>
<p class="texxt-nowrap">
<code class="text-nowrap"><strong>0x0022</strong></code>
</p>
<p class="small">
<strong>Response:</strong>
<a href="#Responses-Status">Status</a>
</p>
</td>
<td>
<div class="row mt-3">
<div class="col-8"><code class="text-dark text-nowrap">Device type</code></div>
<div class="col-4"><code>uint8_t</code></div>
</div>
<div class="row mt-1">
<div class="col ml-4">
<strong>Enumerations</strong>
</div>
</div>
<div class="row ml-4 my-2">
<div class="col-4 text-right small text-nowrap">
<code>0</code>
</div>
<div class="col-8 small">Coordinator</div>
</div>
<div class="row ml-4 my-2">
<div class="col-4 text-right small text-nowrap">
<code>1</code>
</div>
<div class="col-8 small">Router</div>
</div>
<div class="row ml-4 my-2">
<div class="col-4 text-right small text-nowrap">
<code>2</code>
</div>
<div class="col-8 small">Legacy router</div>
</div>
</td>
</tr>
<tr>
<td>
<a name="Basic-Start_Network"></a>
<h5 class="text-nowrap">Start Network</h5>
<p class="texxt-nowrap">
<code class="text-nowrap"><strong>0x0024</strong></code>
</p>
<p class="small">
<strong>Response:</strong>
<a href="#Responses-Status">Status</a>,
<a href="#Responses-Network_Joined">Network Joined</a>
</p>
</td>
<td>
</td>
</tr>
<tr>
<td>
<a name="Basic-Network_Address_Request"></a>
<h5 class="text-nowrap">Network Address Request</h5>
<p class="texxt-nowrap">
<div class="small">
Zigbee: <code class="text-dark">NWK_addr_req</code>,
<span class="text-nowrap">Spec., p.
<a href="http://www.zigbee.org/wp-content/uploads/2014/11/docs-05-3474-20-0csg-zigbee-specification.pdf#page=129" target="_blank">101</a></span>.
</div>
<code class="text-nowrap"><strong>0x0040</strong></code>
</p>
<p class="small">
<strong>Response:</strong>
<a href="#Responses-Status">Status</a>,
<a href="#Responses-Network_Address_Response">Network Address Response</a>
</p>
<p class="small">The NWK_addr_req is generated from a Local Device wishing to inquire as to the 16-bit address of the Remote Device based on its known IEEE address. The destination addressing on this command shall be unicast or broadcast to all devices for which macRxOnWhenIdle = TRUE.
</p>
</td>
<td>
<div class="row mt-3">
<div class="col-8"><code class="text-dark text-nowrap">IEEE Address</code></div>
<div class="col-4"><code>uint64_t</code></div>
</div>
<div class="row mt-3">
<div class="col-8"><code class="text-dark text-nowrap">Request Type</code></div>
<div class="col-4"><code>uint8_t</code></div>
</div>
<div class="row mt-1">
<div class="col ml-4">
<strong>Enumerations</strong>
</div>
</div>
<div class="row ml-4 my-2">
<div class="col-4 text-right small text-nowrap">
<code>0</code>
</div>
<div class="col-8 small">Simple Device Response</div>
</div>
<div class="row ml-4 my-2">
<div class="col-4 text-right small text-nowrap">
<code>1</code>
</div>
<div class="col-8 small">Extended Device Response</div>
</div>
<div class="row ml-4 my-2">
<div class="col-4 text-right small text-nowrap">
<code>0x02 - 0xff</code>
</div>
<div class="col-8 small">Reserved</div>
</div>
<div class="row mt-3">
<div class="col-8"><code class="text-dark text-nowrap">Request Type</code></div>
<div class="col-4"><code>uint8_t</code></div>
</div>
</td>
</tr>
<tr>
<td>
<a name="Basic-IEEE_Address_Request"></a>
<h5 class="text-nowrap">IEEE Address Request</h5>
<p class="texxt-nowrap">
<div class="small">
Zigbee: <code class="text-dark">IEEE_addr_req</code>,
<span class="text-nowrap">Spec., p.
<a href="http://www.zigbee.org/wp-content/uploads/2014/11/docs-05-3474-20-0csg-zigbee-specification.pdf#page=131" target="_blank">103</a></span>.
</div>
<code class="text-nowrap"><strong>0x0041</strong></code>
</p>
<p class="small">
<strong>Response:</strong>