-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2416 lines (2396 loc) · 97.1 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>
<head>
<meta charset="utf-8">
<title>Z-Wave.Me Wall-mounted Multisensor</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- <link rel="stylesheet" href="css/zniffer.css">-->
<script src="js/index.js" defer></script>
<link rel="stylesheet" href="css/style.css">
<!-- <script src="js/zniffer.js" defer></script>-->
</head>
<body>
<aside class="side-menu open">
<nav>
<div class="side-menu-header">
<div class="close" onclick="toggleMenu()"></div>
</div>
<div>
<img src="https://z-wave.me/files/manual/zniffer/pics/Z-Wave-Me.png" alt="">
</div>
<h3>Wall-mounted Multisensor Manual</h3>
<ul class="ChildLinks">
<li><a href="#ProductDescription">Product description</a></li>
<li><a href="#WhatIsZ-Wave">What is Z-Wave™ and Long Range?</a></li>
<li><a href="#Connection">Connection</a></li>
<li><a href="#WallMounting">Wall mounting</a></li>
<li><a href="#IncludeExclude">Z-Wave Include (Add) / Exclude (Remove) process</a>
<ul>
<li><a href="#AddingByZ-WaveButton">Adding by Z-Wave button press</a></li>
<li><a href="#AddingUsingSmartStart">Adding using SmartStart</a></li>
</ul>
</li>
<li><a href="#CommunicationInterfaces">RS-485 or Z-Wave communication interfaces</a>
<ul>
<li><a href="#RegisterMap">Modbus Register Map</a></li>
</ul>
</li>
<li><a href="#Using">Usage in Z-Wave network</a>
<ul>
<li><a href="#MotionSensor">Motion sensor</a></li>
<li><a href="#TemperatureSensor">Temperature sensor</a></li>
<li><a href="#HumiditySensor">Humidity sensor</a></li>
<li><a href="#LuminanceSensor">Luminance sensor</a></li>
<li><a href="#CO2AndVOCSensors">CO₂ and VOC sensors</a></li>
<li><a href="#CO2AutoCalibration">Auto-calibration of the CO₂ sensor</a></li>
<li><a href="#SafeLevelsOfCO2">Safe levels of CO₂</a></li>
<li><a href="#NoiseSensor">Noise sensor</a></li>
<li><a href="#IntrusionDetection">Intrusion detection</a></li>
<li><a href="#Hysteresis">Hysteresis</a></li>
</ul>
</li>
<li><a href="#Associations">Associations</a></li>
<li><a href="#Configurations">Configuration Parameters</a></li>
<li><a href="#FactoryReset">Factory Reset</a></li>
<li><a href="#LEDs">LEDs</a></li>
<li><a href="#BuzzerControl">Buzzer control</a></li>
<li><a href="#NotificationCC">Notification Command Class</a></li>
<li><a href="#SensorMultilevelCC">Sensor Multilevel Command Class</a></li>
<li><a href="#Basic">Basic Command Class</a></li>
<li><a href="#SecurityCC">Security</a></li>
<li><a href="#CommandClasses">Command Classes Versions</a></li>
<li><a href="#TechnicalSpecifications">Technical specifications</a></li>
</ul>
</nav>
</aside>
<header>
<div class="wrapper">
<div class="content">
<div class="menu">
<div class="hide-when-open hamburger" onclick="toggleMenu()"><div></div></div>
</div>
</div>
</div>
</header>
<div class="wrapper wrapper-helper">
<div class="content">
<h1 id="ProductDescription">Product description</h1>
<p>ZME_WB-MSW</p>
<p>WB-MSW-ZWAVE</p>
<p>Version 1.0</p>
<center><img src="pics/WB-MSW3-front.JPG" width="30%"></center>
<p>Z-Wave.Me Wall-mounted Multisensor it’s a Z-Wave Plus™ and RS-485 operating multisensor that contains temperature, humidity, light, motion, noise level, CO₂ concentration and volatile organic compounds (VOC) sensors. Built-in IR transceiver is designed to control the TV/AV and air conditioning.</p>
<p>The multisensor case is made of plastic and is not waterproof, designed for use in homes and offices. For wall mounting.</p>
<p>Supports operation via the Z-Wave radio protocol or via the two-wire RS-485 bus with Modbus RTU commands.</p>
<table class="wikitable">
<tbody>
<tr>
<th><p align="center">Measured value</p></th>
<th><p align="center">Range</p></th>
<th><p align="center">Error rate</p></the>
<th><p align="center">Ready to work after power done</p></th>
</tr>
<tr>
<td><p>Concentration CO₂</p></td>
<td><p>400 – 5000 ppm (parts per million)</p></td>
<td><p>100 ppm + 5% from the measured value</p></td>
<td><p>3 min, auto-calibration every 7 days</p></td>
</tr>
<tr>
<td><p>Temperature</p></td>
<td><p>−40 °С – +80 °С</p></td>
<td><p>±0.3 °С (in range 0 – 70 °C)</p>
<p>±0.5 °С (in range−40 – 0 °C and 70 – 80 °C)</p></td>
<td><p>1 sec, time constant (balancing with ambient air) ~4 min</p></td>
</tr>
<tr>
<td><p>Humidity</p></td>
<td><p>5 – 95 %</p></td>
<td><p>±3 %</p></td>
<td><p>1 sec</p></td>
</tr>
<tr>
<td><p>Noise level (sound pressure)</p></td>
<td><p>38 – 105 dB</p></td>
<td><p>±2 dB (±3 dB int v.4.8)</p></td>
<td><p>5 sec</p></td>
</tr>
<tr>
<td><p>Illumination</p></td>
<td><p>0,02 – 100 000 lx</p></td>
<td><p>±10 %</p></td>
<td><p>1 sec</p></td>
</tr>
<tr>
<td><p>Air quality - VOC</p>
<p>(volatile organic compounds)</p></td>
<td><p>0 ppm – 60000 ppb (parts per million) for ethanol</p></td>
<td><p>±15 % (typical)</p>
<p>±40 % (max)</p></td>
<td><p>5 min</p>
<p>(self-calibration after 12 hours)</p></td>
</tr>
<tr>
<td><p>Motion sensor</p></td>
<td><p>Up to 8 m, 120 degree</p></td>
<td><p> </p></td>
<td><p>8 sec</p></td>
</tr>
<tr>
<td><p>Transmitting IR commands</p></td>
<td><p>Up to 10 m (depends on the surrounding conditions)</p></td>
<td><p> </p></td>
<td><p>1 sec</p></td>
</tr>
</tbody>
</table>
<h1 id="WhatIsZ-Wave">What is Z-Wave™ and Long Range?</h1>
<p>The Z-Wave protocol is an open, interoperable, sub-GHz wireless communications technology designed specifically for control, monitoring and status reading applications in residential and light commercial environments. Z-Wave has two operating modes Z-Wave MESH which is a very reliable sub-GHz MESH and Long Range (US only) which operates in a STAR topology offering over a mile range.</p>
<p>This product can be operated in any Z-Wave network with other Z-Wave certified devices from other manufacturers.</p>
<p><b>Note:</b> To add in Z-Wave Long Range mode, you can only use SmartStart.</p>
<h1 id="Connection">Connection</h1>
<p>The terminal block "V+ GND A B" with a 3.5 mm pitch is used to connect power and the RS-485 bus.</p>
<p>Power supply characteristics:</p>
<ul>
<li>Voltage: 9 V – 28 V DC</li>
<li>Power: 4W</li>
</ul>
<center><img src="pics/Installation_WB-MSW3.png" width="30%"></center>
<h1 id="WallMounting">Wall mounting</h1>
<p>For mounting with the possibility of easy removal use screws with a head diameter of about 7 mm, for permanent fixation use 9-10 mm.</p>
<p>The device must be operated under recommended environmental conditions.</p>
<p>We recommend placing the multisensors on warm (internal) walls, at a height of 1-1.6 m from the floor level, taking into account possible drafts and sun exposure.</p>
<p>When mounted on the ceiling in a living room, the temperature will be higher than in the room, and the humidity will be lower than in the room. The concentration of CO₂ does not depend on the height.</p>
<p>If the sensor is mounted on an external wall, then in the cold season the temperature sensor value will be several degrees lower than in the room.</p>
<p>After installing the multisensor, the CO₂ sensor will be automatically calibrated in the new environment. Full calibration takes 7 days.</p>
<h1 id="IncludeExclude">Z-Wave Include (Add) / Exclude (Remove) process</h1>
<h3 id="AddingByZ-WaveButton">Adding by Z-Wave button press</h3>
<p>1. Power up the device and wait 2-3 minutes until the CO₂ sensor (channel 6) is calibrated. If you include before that, the CO₂ sensor will be missing.
<p>2. Remove the top cover</p>
<table style="width:100%">
<tbody>
<tr>
<th><img src="pics/WB-MSW3-OPEN_1.png" width="100%"></th>
<th><img src="pics/WB-MSW3-OPEN_2.png" width="100%"></th>
<th><img src="pics/WB-MSW3-OPEN_3.png" width="100%"></th>
</tr>
<tr>
<td>Locate the latch tab on the underside of the case</td>
<td>Press the latch until the ends with a screwdriver perpendicular to the side of the case</td>
<td>Lift the top cover</td>
</tr>
</tbody>
</table>
<p>3. Z-Wave include button is located on the board. Switch the controller to the "Inclusion" mode and press the button 3 times.</p>
<p>To exclude multisensor, switch the Z-Wave controller to the "Exclusion" mode and press Z-Wave button 3 times.</p>
<center><img src="pics/IMG_2652_info.jpg" width="60%"></center>
<h3 id="AddingUsingSmartStart">Adding using SmartStart</h3>
<p>Wall-mounted Multisensor is a SmartStart enabled product. It can be added into a Z-Wave network by scanning the Z-Wave QR Code placed on the back cover.</p>
<center><img src="pics/MSW-back-cover.png" width="30%"></center>
<ol>
<li>To use SmartStart your controller needs to support Security S2</li>
<li>On the add device page scan the SmartStart QR-code or enter the full DSK string</li>
<li>Power the multisensor</li>
<li>Wait for the adding process to start (up to few minutes)</li>
</ol>
<h1 id="CommunicationInterfaces">RS-485 or Z-Wave communication interfaces</h1>
<p>Mode Switch is needed to select the communication interface.</p>
<table class="wikitable">
<tbody>
<tr>
<td>ON</td>
<td>Z-Wave (by default)</td>
</tr>
<tr>
<td>OFF</td>
<td>RS-485</td>
</tr>
</tbody>
</table>
<li><a href="#RegisterMap">Modbus Register Map</a></li>
<h1 id="Using">Usage in Z-Wave network</h1>
<p>Thanks to the many built-in sensors, the device can be used in different scenarios.</p>
<h3 id="MotionSensor">Motion sensor</h3>
<p>Motion sensor can be used to control lighting and in security cases. Add the lighting device (bulb, led strip, relay, dimmer) to the association group 2 so that the sensor can control it. Parameters 64 - 67 are responsible for sending control commands when the motion sensor is triggered.</p>
<h3 id="TemperatureSensor">Temperature sensor</h3>
<p>Temperature sensor can be used in a climate control scenario. In association group 3 add the wall plug that controls the heater. Parameters 68 - 73 allow you to adjust the temperature of turning on and off the heater.</p>
<h3 id="HumiditySensor">Humidity sensor</h3>
<p>Humidity sensor together with the temperature sensor can control the microclimate in the room. Add a humidifier to the association group 4. Parameters 74 - 79 allow you to adjust the humidity level of turning on and off the humidifier.</p>
<h3 id="LuminanceSensor">Luminance sensor</h3>
<p>Luminance sensor together with the motion sensor can control lighting more intelligently. In association group 5 add a device that should turn on or off when the luminance level is exceeded. Parameters 80 - 85 allow you to control devices when the luminance level changes. Example scenario: Even if the motion sensor is triggered, but the natural luminance level is high, then the light can not be turned on.</p>
<h3 id="CO2AndVOCSensors">CO₂ and VOC sensors</h3>
<p>CO₂ and VOC sensors are designed for indoor air quality monitoring. If the values are exceeded, open the window or turn on the ventilation. In association groups 6 and 7 add a ventilation control device or a siren to alert about airing. Parameters 86 - 91 allow you to adjust the CO₂ level to enable ventilation, parameters 92 - 97 allow you to adjust the VOC level to enable ventilation.</p>
<h3 id="CO2AutoCalibration">Auto-calibration of the CO₂ sensor</h3>
<p>Auto-calibration of the CO₂ sensor. The measured minimum value for 7 days is taken as 400 ppm — this is the value of the CO₂ concentration on the street. The CO₂ concentration will drop to street level if there are no people in the room for at least a few hours a day, or if exhaust ventilation is working in the room, or windows are sometimes opened in the room.</p>
<h3 id="SafeLevelsOfCO2">Safe levels of CO₂</h3>
<table class="wikitable">
<tbody>
<tr>
<td>250 - 400 ppm</td>
<td>Normal background concentration in outdoor ambient air</td>
</tr>
<tr>
<td>400 - 1000 ppm</td>
<td>Concentrations typical of occupied indoor spaces with good air exchange</td>
</tr>
<tr>
<td>1000 - 2000 ppm</td>
<td>Complaints of drowsiness and poor air.</td>
</tr>
<tr>
<td>2000 - 5000 ppm</td>
<td>Headaches, sleepiness and stagnant, stale, stuffy air. Poor concentration, loss of attention, increased heart rate and slight nausea may also be present.</td>
</tr>
<tr>
<td>5000 ppm</td>
<td>Workplace exposure limit (as 8-hour TWA) in most jurisdictions.</td>
</tr>
<tr>
<td>>40000 ppm</td>
<td>Exposure may lead to serious oxygen deprivation resulting in permanent brain damage, coma, even death.</td>
</tr>
</tbody>
</table>
<h3 id="NoiseSensor">Noise sensor</h3>
<p>Noise sensor measures the noise level in dB, can be used in public areas to monitor people's activity. In association group 8 add a device that should turn on or off when the noise level is exceeded. Parameters 98 - 103 allow you to control devices when the luminance level changes.</p>
<h3 id="IntrusionDetection">Intrusion detection</h3>
<p>Intrusion detection is provided by a noise sensor. By default, if the noise level is above 80 dB, a alarm is sent to the controller. You can adjust the noise level in parameters 104, 105. Also the intrusion alarm can be used to turn on the light by clap :).</p>
<h3 id="Hysteresis">Hysteresis</h3>
<p>When controlling the heating, temperature hysteresis is defined by a minimum and maximum temperature value, where the heat will be turned on and off respectively. For example, If the room temperature is to be maintained at 21°C with a hysteresis of 2°C, the heater will turn on when the temperature drops to 19°C and turn off when the temperature reaches 23°C.</p>
<center><img src="pics/Figure1.png" width="60%"></center>
<h1 id="Associations">Associations</h1>
<p>Association - Direct control of other Z-Wave devices in case of exceeding the threshold of one of the sensors. Up to 5 devices can be placed in each of the 8 groups.</p>
<table class="wikitable">
<tbody>
<tr>
<th>Group #</th>
<th>Description</th>
</tr>
<tr>
<td>1</td>
<td>Lifeline - reports on all sensor values to the controller</td>
</tr>
<tr>
<td>2</td>
<td>Motion Basic On/Off - control devices when the motion sensor is triggered</td>
</tr>
<tr>
<td>3</td>
<td>Temperature Basic On/Off - control devices when the temperature changes (thermostat function)</td>
</tr>
<tr>
<td>4</td>
<td>Humidity Basic On/Off - control devices when humidity changes (hygrometer function)</td>
</tr>
<tr>
<td>5</td>
<td>Lumen Basic On/Off - control devices when the luminosity changes</td>
</tr>
<tr>
<td>6</td>
<td>CO₂ Basic On/Off - control devices when the CO₂ changes</td>
</tr>
<tr>
<td>7</td>
<td>VOC Basic On/Off - control devices when the VOC changes</td>
</tr>
<tr>
<td>8</td>
<td>Noise level Basic On/Off - control devices when the noise changes</td>
</tr>
</tbody>
</table>
<h1 id="Configurations">Configuration Parameters</h1>
<p>Configuration parameters are used to configure the device for individual needs.</p>
<h4>1. Debug mode</h4>
<p>Enables Z-Uno debug mode.</p>
<table class="wikitable">
<tbody>
<tr>
<td>Value</td>
<td>0 - 1</td>
</tr>
<tr>
<td>Default</td>
<td>0</td>
</tr>
<tr>
<td>Size</td>
<td>1 byte</td>
</tr>
</tbody>
</table>
<h4>2. Activity LED</h4>
<p>Turns on/off activity led.</p>
<table class="wikitable">
<tbody>
<tr>
<td>Value</td>
<td>0 - 1</td>
</tr>
<tr>
<td>Default</td>
<td>1</td>
</tr>
<tr>
<td>Size</td>
<td>1 byte</td>
</tr>
</tbody>
</table>
<h4>8. RF logging</h4>
<p>Turns on/off exception logging. Used for Z-Uno SDK debugging. See <a href="https://z-uno.z-wave.me/z-wave/configuration-parameters/">Z-Uno description for more info</a></p>
<table class="wikitable">
<tbody>
<tr>
<td>Value</td>
<td>0 - 1</td>
</tr>
<tr>
<td>Default</td>
<td>1</td>
</tr>
<tr>
<td>Size</td>
<td>1 byte</td>
</tr>
</tbody>
</table>
<h4>9. Radio frequency (hidden parameter)</h4>
<p>Changes Z-Wave region</p>
<table class="wikitable">
<tbody>
<tr>
<td>Value</td>
<td>0 — Don't change the frequency, just reboot<br/>256 — Load last selected frequency immediately<br/>255 — EU<br/>510 — RU<br/>765 — IN<br/>1020 — US<br/>1275 — ANZ<br/>1530 — HK<br/>1785 — CN<br/>2040 — JP<br/>2295 — KR<br/>2550 — IL<br/>4590 — US Long Range</td>
</tr>
<tr>
<td>Default</td>
<td>255 (EU)</td>
</tr>
<tr>
<td>Size</td>
<td>2 bytes</td>
</tr>
</tbody>
</table>
<h4>11. Multilevel report interval</h4>
<p>Minimal report interval in seconds. Debugging mode is required.</p>
<p>Even if the temperature changes once per second, the report will come no more than once every 30 seconds (by default). This is protection from radio flood.</p>
<table class="wikitable">
<tbody>
<tr>
<td>Value</td>
<td>0 - 255</td>
</tr>
<tr>
<td>Default</td>
<td>30</td>
</tr>
<tr>
<td>Size</td>
<td>1 byte</td>
</tr>
</tbody>
</table>
<h4>20. OTA confirmation (hidden parameter)</h4>
<p>Accepts firmware update process. Set 1 to accept.</p>
<table class="wikitable">
<tbody>
<tr>
<td>Value</td>
<td>0 - 1</td>
</tr>
<tr>
<td>Default</td>
<td>0</td>
</tr>
<tr>
<td>Size</td>
<td>4 bytes</td>
</tr>
</tbody>
</table>
<h4>64. Delay before cancellation of the motion alarm</h4>
<p>The period of time after which the motion alarm will be canceled in the controller and association group 2. If a motion triggered during this time period, the timer starts again. Value in seconds.</p>
<table class="wikitable">
<tbody>
<tr>
<td>Value</td>
<td>0 - 100000</td>
</tr>
<tr>
<td>Default</td>
<td>60</td>
</tr>
<tr>
<td>Size</td>
<td>4 bytes</td>
</tr>
</tbody>
</table>
<h4>65. Motion ON command</h4>
<p>Send Basic Set ON command to the association group 2.</p>
<table class="wikitable">
<tbody>
<tr>
<td>Value</td>
<td>0 - 255</td>
</tr>
<tr>
<td>Default</td>
<td>255</td>
</tr>
<tr>
<td>Size</td>
<td>4 bytes</td>
</tr>
</tbody>
</table>
<h4>66. Motion OFF command</h4>
<p>Send Basic Set OFF command to the association group 2.</p>
<table class="wikitable">
<tbody>
<tr>
<td>Value</td>
<td>0 - 255</td>
</tr>
<tr>
<td>Default</td>
<td>0</td>
</tr>
<tr>
<td>Size</td>
<td>4 bytes</td>
</tr>
</tbody>
</table>
<h4>67. Motion ON/OFF commands rules</h4>
<p>1 - Send ON if the motion is detected. Send OFF if the motion is idle.</p>
<p>2 - Send ON if the motion is detected. Do not send OFF.</p>
<p>3 - Do not send ON. Send OFF if the motion is idle.</p>
<p>Commands are sent to the Group 2.</p>
<table class="wikitable">
<tbody>
<tr>
<td>Value</td>
<td>0 - 3</td>
</tr>
<tr>
<td>Default</td>
<td>1</td>
</tr>
<tr>
<td>Size</td>
<td>4 bytes</td>
</tr>
</tbody>
</table>
<h4>68. Temperature Report Threshold</h4>
<p>0 - Reports disabled. Send Report to the controller if the temperature has changed after the last report by the specified value. Value in 0.01C° (100 = 1C°).</p>
<table class="wikitable">
<tbody>
<tr>
<td>Value</td>
<td>0 - 4000</td>
</tr>
<tr>
<td>Default</td>
<td>100 (1 C°)</td>
</tr>
<tr>
<td>Size</td>
<td>4 bytes</td>
</tr>
</tbody>
</table>
<h4>69. Temperature Level to send Basic Set</h4>
<p>Send Basic Set to the association group 3 if the temperature has crossed the level up or down + hysteresis. Value in 0.01C° (100 = 1C°).</p>
<table class="wikitable">
<tbody>
<tr>
<td>Value</td>
<td>-4000 — 8000</td>
</tr>
<tr>
<td>Default</td>
<td>4000 (40 C°)</td>
</tr>
<tr>
<td>Size</td>
<td>4 bytes</td>
</tr>
</tbody>
</table>
<h4>70. Temperature Hysteresis to send Basic Set</h4>
<p>The range around a Temperature Level within which no commands are sent to the association group 3. Value in 0.01C° (100 = 1C°).</p>
<table class="wikitable">
<tbody>
<tr>
<td>Value</td>
<td>10 — 2000</td>
</tr>
<tr>
<td>Default</td>
<td>100 (0.5 C°)</td>
</tr>
<tr>
<td>Size</td>
<td>4 bytes</td>
</tr>
</tbody>
</table>
<h4>71. Temperature ON command</h4>
<p>Send Basic Set ON command to the association group 3.</p>
<table class="wikitable">
<tbody>
<tr>
<td>Value</td>
<td>0 - 255</td>
</tr>
<tr>
<td>Default</td>
<td>255</td>
</tr>
<tr>
<td>Size</td>
<td>4 bytes</td>
</tr>
</tbody>
</table>
<h4>72. Temperature OFF command</h4>
<p>Send Basic Set OFF command to the association group 3.</p>
<table class="wikitable">
<tbody>
<tr>
<td>Value</td>
<td>0 - 255</td>
</tr>
<tr>
<td>Default</td>
<td>0</td>
</tr>
<tr>
<td>Size</td>
<td>4 bytes</td>
</tr>
</tbody>
</table>
<h4>73. Temperature ON/OFF commands rules</h4>
<p>1 - Send ON if the temperature is greater than Level. Send OFF if the temperature is less than Level.</p>
<p>2 - Send ON if the temperature is greater than Level. Do not send OFF.</p>
<p>3 - Do not send ON. Send OFF if the temperature is less than Level.</p>
<p>Сommands are sent to the Group 3.</p>
<table class="wikitable">
<tbody>
<tr>
<td>Value</td>
<td>1 - 3</td>
</tr>
<tr>
<td>Default</td>
<td>1</td>
</tr>
<tr>
<td>Size</td>
<td>4 bytes</td>
</tr>
</tbody>
</table>
<h4>74. Humidity Report Threshold</h4>
<p>0 - Reports disabled. Send Report to the controller if the humidity has changed after the last report by the specified value. Value in %.</p>
<table class="wikitable">
<tbody>
<tr>
<td>Value</td>
<td>0 - 90</td>
</tr>
<tr>
<td>Default</td>
<td>5</td>
</tr>
<tr>
<td>Size</td>
<td>4 bytes</td>
</tr>
</tbody>
</table>
<h4>75. Humidity Level to send Basic Set</h4>
<p>Send Basic Set to the association group 4 if the humidity has crossed the level up or down + hysteresis. Value in %.</p>
<table class="wikitable">
<tbody>
<tr>
<td>Value</td>
<td>5 - 95</td>
</tr>
<tr>
<td>Default</td>
<td>50</td>
</tr>
<tr>
<td>Size</td>
<td>4 bytes</td>
</tr>
</tbody>
</table>
<h4>76. Humidity Hysteresis to send Basic Set</h4>
<p>The range around a Humidity Level within which no commands are sent to the association group 4. Value in %.</p>
<table class="wikitable">
<tbody>
<tr>
<td>Value</td>
<td>1 - 50</td>
</tr>
<tr>
<td>Default</td>
<td>2</td>
</tr>
<tr>
<td>Size</td>
<td>4 bytes</td>
</tr>
</tbody>
</table>
<h4>77. Humidity ON command</h4>
<p>Send Basic Set ON command to the association group 4.</p>
<table class="wikitable">
<tbody>
<tr>
<td>Value</td>
<td>0 - 255</td>
</tr>
<tr>
<td>Default</td>
<td>255</td>
</tr>
<tr>
<td>Size</td>
<td>4 bytes</td>
</tr>
</tbody>
</table>
<h4>78. Humidity OFF command</h4>
<p>Send Basic Set OFF command to the association group 4.</p>
<table class="wikitable">
<tbody>
<tr>
<td>Value</td>
<td>0 - 255</td>
</tr>
<tr>
<td>Default</td>
<td>0</td>
</tr>
<tr>
<td>Size</td>
<td>4 bytes</td>
</tr>
</tbody>
</table>
<h4>79. Humidity ON/OFF commands rules</h4>
<p>1 - Send ON if the humidity is greater than Level. Send OFF if the humidity is less than Level.</p>
<p>2 - Send ON if the humidity is greater than Level. Do not send OFF.</p>
<p>3 - Do not send ON. Send OFF if the humidity is less than Level.</p>
<p>Сommands are sent to the Group 4.</p>
<table class="wikitable">
<tbody>
<tr>
<td>Value</td>
<td>1 - 3</td>
</tr>
<tr>
<td>Default</td>
<td>1</td>
</tr>
<tr>
<td>Size</td>
<td>4 bytes</td>
</tr>
</tbody>
</table>
<h4>80. Luminance Report Threshold</h4>
<p>0 - Reports disabled. Send Report to the controller if the luminance has changed after the last report by the specified value. Value in lux.</p>
<table class="wikitable">
<tbody>
<tr>
<td>Value</td>
<td>0 - 100000</td>
</tr>
<tr>
<td>Default</td>
<td>100</td>
</tr>
<tr>
<td>Size</td>
<td>4 bytes</td>
</tr>
</tbody>
</table>
<h4>81. Luminance Level to send Basic Set</h4>
<p>Send Basic Set to the association group 5 if the luminance has crossed the level up or down + hysteresis. Value in lux.</p>
<table class="wikitable">
<tbody>
<tr>
<td>Value</td>
<td>0 - 100000</td>
</tr>
<tr>
<td>Default</td>
<td>200</td>
</tr>
<tr>
<td>Size</td>
<td>4 bytes</td>
</tr>
</tbody>
</table>
<h4>82. Luminance Hysteresis to send Basic Set</h4>
<p>The range around a Luminance Level within which no commands are sent to the association group 5. Value in lux.</p>
<table class="wikitable">
<tbody>
<tr>
<td>Value</td>
<td>1 - 50000</td>
</tr>
<tr>
<td>Default</td>
<td>50</td>
</tr>
<tr>
<td>Size</td>
<td>4 bytes</td>
</tr>
</tbody>
</table>
<h4>83. Luminance ON command</h4>
<p>Send Basic Set ON command to the association group 5.</p>
<table class="wikitable">
<tbody>
<tr>
<td>Value</td>
<td>0 - 255</td>
</tr>
<tr>
<td>Default</td>
<td>255</td>
</tr>
<tr>
<td>Size</td>
<td>4 bytes</td>
</tr>
</tbody>
</table>
<h4>84. Luminance OFF command</h4>
<p>Send Basic Set OFF command to the association group 5.</p>
<table class="wikitable">
<tbody>
<tr>
<td>Value</td>
<td>0 - 255</td>
</tr>
<tr>
<td>Default</td>
<td>0</td>
</tr>
<tr>
<td>Size</td>
<td>4 bytes</td>
</tr>
</tbody>
</table>
<h4>85. Luminance ON/OFF commands rules</h4>
<p>1 - Send ON if the luminance is greater than Level. Send OFF if the luminance is less than Level.</p>
<p>2 - Send ON if the luminance is greater than Level. Do not send OFF.</p>
<p>3 - Do not send ON. Send OFF if the luminance is less than Level.</p>
<p>Сommands are sent to the Group 5.</p>
<table class="wikitable">
<tbody>
<tr>
<td>Value</td>
<td>1 - 3</td>
</tr>
<tr>
<td>Default</td>
<td>1</td>
</tr>
<tr>
<td>Size</td>
<td>4 bytes</td>
</tr>
</tbody>
</table>
<h4>86. CO₂ Report Threshold</h4>
<p>0 - Reports disabled. Send Report to the controller if the CO₂ has changed after the last report by the specified value. Value in ppm.</p>
<table class="wikitable">
<tbody>
<tr>
<td>Value</td>
<td>0 - 5000</td>
</tr>
<tr>
<td>Default</td>
<td>100</td>
</tr>
<tr>
<td>Size</td>
<td>4 bytes</td>
</tr>
</tbody>
</table>
<h4>87. CO₂ Level to send Basic Set</h4>
<p>Send Basic Set to the association group 6 if the CO₂ has crossed the level up or down + hysteresis. Value in ppm.</p>
<table class="wikitable">
<tbody>
<tr>
<td>Value</td>
<td>400 - 5000</td>
</tr>
<tr>
<td>Default</td>
<td>1500</td>
</tr>
<tr>
<td>Size</td>
<td>4 bytes</td>
</tr>
</tbody>
</table>
<h4>88. CO₂ Hysteresis to send Basic Set</h4>
<p>The range around a CO₂ Level within which no commands are sent to the association group 6. Value in ppm.</p>
<table class="wikitable">
<tbody>
<tr>
<td>Value</td>
<td>1 - 2500</td>
</tr>
<tr>
<td>Default</td>
<td>50</td>
</tr>
<tr>
<td>Size</td>
<td>4 bytes</td>
</tr>
</tbody>
</table>
<h4>89. CO₂ ON command</h4>
<p>Send Basic Set ON command to the association group 6.</p>
<table class="wikitable">
<tbody>
<tr>
<td>Value</td>
<td>0 - 255</td>
</tr>
<tr>
<td>Default</td>
<td>255</td>
</tr>
<tr>
<td>Size</td>
<td>4 bytes</td>
</tr>
</tbody>
</table>
<h4>90. CO₂ OFF command</h4>
<p>Send Basic Set OFF command to the association group 6. </p>
<table class="wikitable">
<tbody>
<tr>
<td>Value</td>
<td>0 - 255</td>
</tr>
<tr>
<td>Default</td>
<td>0</td>
</tr>
<tr>
<td>Size</td>
<td>4 bytes</td>
</tr>
</tbody>
</table>
<h4>91. CO₂ ON/OFF commands rules</h4>
<p>1 - Send ON if the CO₂ is greater than Level. Send OFF if the CO₂ is less than Level.</p>
<p>2 - Send ON if the CO₂ is greater than Level. Do not send OFF.</p>
<p>3 - Do not send ON. Send OFF if the CO₂ is less than Level.</p>
<p>Сommands are sent to the Group 6.</p>
<table class="wikitable">
<tbody>
<tr>
<td>Value</td>
<td>1 - 3</td>
</tr>
<tr>
<td>Default</td>
<td>1</td>
</tr>
<tr>
<td>Size</td>
<td>4 bytes</td>
</tr>
</tbody>
</table>
<h4>92. VOC Report Threshold</h4>
<p>0 - Reports disabled. Send Report to the controller if the VOC has changed after the last report by the specified value. Value in ppb.</p>
<table class="wikitable">
<tbody>
<tr>
<td>Value</td>
<td>0 - 60000</td>
</tr>
<tr>
<td>Default</td>
<td>200</td>
</tr>
<tr>
<td>Size</td>
<td>4 bytes</td>
</tr>
</tbody>
</table>
<h4>93. VOC Level to send Basic Set</h4>
<p>Send Basic Set to the association group 7 if the VOC has crossed the level up or down + hysteresis. Value in ppb.</p>
<table class="wikitable">
<tbody>
<tr>
<td>Value</td>
<td>0 - 60000</td>
</tr>
<tr>
<td>Default</td>
<td>660</td>
</tr>
<tr>
<td>Size</td>
<td>4 bytes</td>
</tr>
</tbody>
</table>
<h4>94. VOC Hysteresis to send Basic Set</h4>
<p>The range around a VOC Level within which no commands are sent to the association group 7. Value in ppb.</p>
<table class="wikitable">
<tbody>
<tr>
<td>Value</td>
<td>0 - 30000</td>
</tr>
<tr>
<td>Default</td>
<td>200</td>
</tr>
<tr>
<td>Size</td>
<td>4 bytes</td>
</tr>
</tbody>
</table>
<h4>95. VOC ON command</h4>
<p>Send Basic Set ON command to the association group 7.</p>
<table class="wikitable">