-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathZwave debug.txt
1883 lines (1877 loc) · 137 KB
/
Zwave debug.txt
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
ValueHelp:
ValueUnits: ms
ValueMin: -2147483648
ValueMax: 2147483647
ValueLabel: Temperature
ValueType: 2
ValueHelp: Temperature Sensor Value
ValueUnits: C
ValueMin: 0
ValueMax: 0
ValueLabel: Luminance
ValueType: 2
ValueHelp: Luminance Sensor Value
ValueUnits: lux
ValueMin: 0
ValueMax: 0
ValueLabel: Relative Humidity
ValueType: 2
ValueHelp: Relative Humidity Sensor Value
ValueUnits: %
ValueMin: 0
ValueMax: 0
ValueLabel: Ultraviolet
ValueType: 2
ValueHelp:
ValueUnits:
ValueMin: 0
ValueMax: 0
ValueLabel: Previous Event Cleared
ValueType: 1
ValueHelp:
ValueUnits:
ValueMin: 0
ValueMax: 255
ValueLabel: Home Security
ValueType: 4
ValueHelp: Home Security Alerts
ValueUnits:
ValueMin: 0
ValueMax: 0
2019-05-09 22:40:26.013 Detail, Node002, Received: 0x01, 0x07, 0x00, 0x13, 0x23, 0x00, 0x00, 0x02, 0xca
2019-05-09 22:40:26.014 Detail, Node002, ZW_SEND_DATA Request with callback ID 0x23 received (expected 0x23)
2019-05-09 22:40:26.014 Info, Node002, Request RTT 25 Average Request RTT 24
2019-05-09 22:40:26.014 Info, Node002, Node 2 has been marked as asleep
2019-05-09 22:40:26.014 Detail, Expected callbackId was received
2019-05-09 22:40:26.014 Detail, Expected reply was received
2019-05-09 22:40:26.014 Detail, Message transaction complete
2019-05-09 22:40:26.014 Detail,
2019-05-09 22:40:26.014 Detail, Node002, Removing current message
2019-05-09 22:40:26.014 Detail, Node002, Notification: Notification - Node Asleep
Notification: Notification - Node Asleep
^C
(venv3) pi@raspberrypi:/usr/local/bin $
(venv3) pi@raspberrypi:/usr/local/bin $
(venv3) pi@raspberrypi:/usr/local/bin $
(venv3) pi@raspberrypi:/usr/local/bin $
(venv3) pi@raspberrypi:/usr/local/bin $ ./MinOZW /dev/ttyACM0
Starting MinOZW with OpenZWave Version 1.6-156-ga1eb93cc-dirty
2019-05-09 22:43:41.073 Error, Cannot find a path to the configuration files at ../../../config/, Using /usr/local/etc/openzwave/ instead...
2019-05-09 22:43:41.075 Info, Reading /usr/local/etc/openzwave/options.xml for Options
2019-05-09 22:43:41.075 Warning, Failed to Parse options.xml: Failed to open file
2019-05-09 22:43:41.075 Info, Options:
2019-05-09 22:43:41.075 Info, appendlogfile: false
2019-05-09 22:43:41.075 Info, associate: true
2019-05-09 22:43:41.075 Info, assumeawake: true
2019-05-09 22:43:41.075 Info, autoupdateconfigfile: true
2019-05-09 22:43:41.075 Info, configpath: /usr/local/etc/openzwave/
2019-05-09 22:43:41.075 Info, consoleoutput: true
2019-05-09 22:43:41.076 Info, customsecuredcc: 0x62,0x4c,0x63
2019-05-09 22:43:41.076 Info, drivermaxattempts: 5
2019-05-09 22:43:41.076 Info, dumptrigger: 4
2019-05-09 22:43:41.076 Info, dumptriggerlevel: 1
2019-05-09 22:43:41.076 Info, enablesis: true
2019-05-09 22:43:41.076 Info, enforcesecurereception: true
2019-05-09 22:43:41.076 Info, exclude:
2019-05-09 22:43:41.076 Info, include:
2019-05-09 22:43:41.076 Info, includeinstancelabel: true
2019-05-09 22:43:41.076 Info, interface:
2019-05-09 22:43:41.076 Info, intervalbetweenpolls: true
2019-05-09 22:43:41.076 Info, language:
2019-05-09 22:43:41.076 Info, logfilename: OZW_Log.txt
2019-05-09 22:43:41.076 Info, logging: true
2019-05-09 22:43:41.076 Info, networkkey:
2019-05-09 22:43:41.076 Info, notifyondriverunload: false
2019-05-09 22:43:41.076 Info, notifytransactions: false
2019-05-09 22:43:41.076 Info, performreturnroutes: false
2019-05-09 22:43:41.077 Info, pollinterval: 500
2019-05-09 22:43:41.077 Info, queueloglevel: 9
2019-05-09 22:43:41.077 Info, refreshallusercodes: false
2019-05-09 22:43:41.077 Info, reloadafterupdate: AWAKE
2019-05-09 22:43:41.077 Info, retrytimeout: 10000
2019-05-09 22:43:41.077 Info, saveconfiguration: true
2019-05-09 22:43:41.077 Info, saveloglevel: 8
2019-05-09 22:43:41.077 Info, securitystrategy: SUPPORTED
2019-05-09 22:43:41.077 Info, suppressvaluerefresh: false
2019-05-09 22:43:41.077 Info, userpath:
2019-05-09 22:43:41.077 Info, validatevaluechanges: true
Could Not Open OZW Log File.
2019-05-09 22:43:41.078 Always, OpenZwave Version 1.6-156-ga1eb93cc-dirty Starting Up
2019-05-09 22:43:41.117 Info, Loading Localization File /usr/local/etc/openzwave/Localization.xml
2019-05-09 22:43:41.123 Info, Loaded /usr/local/etc/openzwave/Localization.xml With Revision 5
2019-05-09 22:43:41.123 Always, Using Language Localization
2019-05-09 22:43:41.133 Info, Loading NotificationCCTypes File /usr/local/etc/openzwave/NotificationCCTypes.xml
2019-05-09 22:43:41.134 Info, Loaded /usr/local/etc/openzwave/NotificationCCTypes.xml With Revision 6
2019-05-09 22:43:41.134 Info, Setting Up Provided Network Key for Secure Communications
2019-05-09 22:43:41.134 Warning, Failed - Network Key Not Set
2019-05-09 22:43:41.184 Info, Manufacturer_Specific.xml file Revision is 20
2019-05-09 22:43:41.843 Info, Product name collision: FGR223 Roller Shutter Controller 3 type 303 id 1000 manufacturerid 10f, collides with FGRM223 Roller Shutter Controller 3, type 303 id 1000 manufacturerid 10f
2019-05-09 22:43:42.200 Info, Product name collision: ED2.0 Meter Adapter type 0 id 0 manufacturerid 128, collides with ED2.0 Meter Adapter, type 0 id 0 manufacturerid 128
2019-05-09 22:43:42.200 Info, Product name collision: ED2.0 Display type 128 id 0 manufacturerid 128, collides with ED2.0 Display, type 128 id 0 manufacturerid 128
2019-05-09 22:43:42.395 Info, Product name collision: GR105 Auto Valve type 202 id 511 manufacturerid 152, collides with GR105 Auto Valve, type 202 id 511 manufacturerid 152
2019-05-09 22:43:42.395 Info, Product name collision: GR105n Auto Valve type 3 id 512 manufacturerid 152, collides with GR105n Auto Valve, type 3 id 512 manufacturerid 152
2019-05-09 22:43:42.395 Info, Product name collision: ZSE02 Motion Sensor type 500 id 3 manufacturerid 152, collides with ZSE02 Motion Sensor, type 500 id 3 manufacturerid 152
2019-05-09 22:43:42.428 Info, Product name collision: ZWN-BPC Ceiling Mounted PIR Motion Sensor type 601 id 901 manufacturerid 11a, collides with ZWN-BPC Ceiling Mounted PIR Motion Sensor, type 601 id 901 manufacturerid 11a
2019-05-09 22:43:42.428 Info, Product name collision: ZWN-SC7 7-Button Scene Controller type 801 id b03 manufacturerid 11a, collides with ZWN-SC7 7-Button Scene Controller, type 801 id b03 manufacturerid 11a
2019-05-09 22:43:42.428 Info, Product name collision: ZW15S 15A On/Off Switch type 101 id 102 manufacturerid 11a, collides with ZW15S 15A On/Off Switch, type 101 id 102 manufacturerid 11a
2019-05-09 22:43:42.428 Info, Product name collision: ZW20R 20A TR Duplex Receptacle type 101 id 603 manufacturerid 11a, collides with ZW20R 20A TR Duplex Receptacle, type 101 id 603 manufacturerid 11a
2019-05-09 22:43:42.428 Info, Product name collision: ZWN-RSM1 PLUS-Smart Single Relay Switch Module type 111 id 605 manufacturerid 11a, collides with ZWN-RSM1 PLUS—Smart Single Relay Switch Module, type 111 id 605 manufacturerid 11a
2019-05-09 22:43:42.428 Info, Product name collision: ZW20RM 20A TR Smart Meter Duplex Receptacle type 111 id 101 manufacturerid 11a, collides with ZW20RM 20A TR Smart Meter Duplex Receptacle, type 111 id 101 manufacturerid 11a
2019-05-09 22:43:42.428 Info, Product name collision: ZW500D 500W In-Wall Preset Dimmer Switch type 102 id 201 manufacturerid 11a, collides with ZW500D 500W In-Wall Preset Dimmer Switch, type 102 id 201 manufacturerid 11a
2019-05-09 22:43:42.428 Info, Product name collision: ZW15RM Plus 15A TR Smart Meter Duplex Receptacle type 111 id 105 manufacturerid 11a, collides with ZW15RM Plus 15A TR Smart Meter Duplex Receptacle, type 111 id 105 manufacturerid 11a
2019-05-09 22:43:42.494 Info, Queuing Lookup on mfs.db.openzwave.com for Node 0
2019-05-09 22:43:42.495 Info, Opening controller /dev/ttyACM0
2019-05-09 22:43:42.495 Info, Trying to open serial port /dev/ttyACM0 (attempt 1)
2019-05-09 22:43:42.495 Info, Starting DNSThread
2019-05-09 22:43:42.495 Info, mgr, Added driver for controller /dev/ttyACM0
2019-05-09 22:43:42.495 Info, Timer: thread starting
2019-05-09 22:43:42.495 Detail, Timer: waiting with timeout -1 ms
2019-05-09 22:43:42.495 Info, LookupTxT Checking mfs.db.openzwave.com
2019-05-09 22:43:42.496 Info, Serial port /dev/ttyACM0 opened (attempt 1)
2019-05-09 22:43:42.496 Detail, contrlr, Queuing (Command) FUNC_ID_ZW_GET_VERSION: 0x01, 0x03, 0x00, 0x15, 0xe9
2019-05-09 22:43:42.496 Detail, contrlr, Queuing (Command) FUNC_ID_ZW_MEMORY_GET_ID: 0x01, 0x03, 0x00, 0x20, 0xdc
2019-05-09 22:43:42.496 Detail, contrlr, Queuing (Command) FUNC_ID_ZW_GET_CONTROLLER_CAPABILITIES: 0x01, 0x03, 0x00, 0x05, 0xf9
2019-05-09 22:43:42.496 Detail, contrlr, Queuing (Command) FUNC_ID_SERIAL_API_GET_CAPABILITIES: 0x01, 0x03, 0x00, 0x07, 0xfb
2019-05-09 22:43:42.496 Detail, contrlr, Queuing (Command) FUNC_ID_ZW_GET_SUC_NODE_ID: 0x01, 0x03, 0x00, 0x56, 0xaa
2019-05-09 22:43:46.724 Info, Lookup for mfs.db.openzwave.com returned 20
2019-05-09 22:43:46.739 Info, ManufacturerSpecificDB Initialized
2019-05-09 22:43:46.739 Detail, Notification: ManufacturerSpecificDB Ready
Notification: ManufacturerSpecificDB Ready
2019-05-09 22:43:46.740 Detail,
2019-05-09 22:43:46.740 Info, contrlr, Sending (Command) message (Callback ID=0x00, Expected Reply=0x15) - FUNC_ID_ZW_GET_VERSION: 0x01, 0x03, 0x00, 0x15, 0xe9
2019-05-09 22:43:46.740 Info, contrlr, Encrypted Flag is 0
2019-05-09 22:43:46.742 Detail, contrlr, Received: 0x01, 0x10, 0x01, 0x15, 0x5a, 0x2d, 0x57, 0x61, 0x76, 0x65, 0x20, 0x33, 0x2e, 0x39, 0x35, 0x00, 0x01, 0x99
2019-05-09 22:43:46.743 Detail,
2019-05-09 22:43:46.743 Info, contrlr, Received reply to FUNC_ID_ZW_GET_VERSION:
2019-05-09 22:43:46.743 Info, contrlr, Static Controller library, version Z-Wave 3.95
2019-05-09 22:43:46.743 Detail, Node045, Expected reply was received
2019-05-09 22:43:46.743 Detail, Node045, Message transaction complete
2019-05-09 22:43:46.743 Detail,
2019-05-09 22:43:46.743 Detail, contrlr, Removing current message
2019-05-09 22:43:46.743 Detail,
2019-05-09 22:43:46.743 Info, contrlr, Sending (Command) message (Callback ID=0x00, Expected Reply=0x20) - FUNC_ID_ZW_MEMORY_GET_ID: 0x01, 0x03, 0x00, 0x20, 0xdc
2019-05-09 22:43:46.743 Info, contrlr, Encrypted Flag is 0
2019-05-09 22:43:46.746 Detail, contrlr, Received: 0x01, 0x08, 0x01, 0x20, 0xdf, 0x30, 0x42, 0xb0, 0x01, 0xca
2019-05-09 22:43:46.746 Detail,
2019-05-09 22:43:46.747 Info, contrlr, Received reply to FUNC_ID_ZW_MEMORY_GET_ID. Home ID = 0xdf3042b0. Our node ID = 1
2019-05-09 22:43:46.747 Detail, Node048, Expected reply was received
2019-05-09 22:43:46.747 Detail, Node048, Message transaction complete
2019-05-09 22:43:46.747 Detail,
2019-05-09 22:43:46.747 Detail, contrlr, Removing current message
2019-05-09 22:43:46.747 Detail,
2019-05-09 22:43:46.747 Info, contrlr, Sending (Command) message (Callback ID=0x00, Expected Reply=0x05) - FUNC_ID_ZW_GET_CONTROLLER_CAPABILITIES: 0x01, 0x03, 0x00, 0x05, 0xf9
2019-05-09 22:43:46.747 Info, contrlr, Encrypted Flag is 0
2019-05-09 22:43:46.749 Detail, contrlr, Received: 0x01, 0x04, 0x01, 0x05, 0x08, 0xf7
2019-05-09 22:43:46.749 Detail,
2019-05-09 22:43:46.749 Info, contrlr, Received reply to FUNC_ID_ZW_GET_CONTROLLER_CAPABILITIES:
2019-05-09 22:43:46.749 Info, contrlr, There is no SUC ID Server (SIS) in this network.
2019-05-09 22:43:46.749 Info, contrlr, The PC controller is a primary controller.
2019-05-09 22:43:46.749 Detail, Node247, Expected reply was received
2019-05-09 22:43:46.750 Detail, Node247, Message transaction complete
2019-05-09 22:43:46.750 Detail,
2019-05-09 22:43:46.750 Detail, contrlr, Removing current message
2019-05-09 22:43:46.750 Detail,
2019-05-09 22:43:46.750 Info, contrlr, Sending (Command) message (Callback ID=0x00, Expected Reply=0x07) - FUNC_ID_SERIAL_API_GET_CAPABILITIES: 0x01, 0x03, 0x00, 0x07, 0xfb
2019-05-09 22:43:46.750 Info, contrlr, Encrypted Flag is 0
2019-05-09 22:43:46.754 Detail, contrlr, Received: 0x01, 0x2b, 0x01, 0x07, 0x01, 0x00, 0x00, 0x86, 0x00, 0x01, 0x00, 0x5a, 0xfe, 0x81, 0xff, 0x88, 0x4f, 0x1f, 0x00, 0x00, 0xfb, 0x9f, 0x7d, 0xa0, 0x67, 0x00, 0x00, 0x80, 0x00, 0x80, 0x86, 0x00, 0x00, 0x00, 0xe8, 0x73, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x60, 0x00, 0x00, 0xfb
2019-05-09 22:43:46.754 Detail,
2019-05-09 22:43:46.754 Info, contrlr, Received reply to FUNC_ID_SERIAL_API_GET_CAPABILITIES
2019-05-09 22:43:46.754 Info, contrlr, Serial API Version: 1.0
2019-05-09 22:43:46.754 Info, contrlr, Manufacturer ID: 0x0086
2019-05-09 22:43:46.755 Info, contrlr, Product Type: 0x0001
2019-05-09 22:43:46.755 Info, contrlr, Product ID: 0x005a
2019-05-09 22:43:46.755 Detail, contrlr, Queuing (Command) FUNC_ID_ZW_GET_RANDOM: 0x01, 0x04, 0x00, 0x1c, 0x20, 0xc7
2019-05-09 22:43:46.755 Detail, contrlr, Queuing (Command) FUNC_ID_SERIAL_API_GET_INIT_DATA: 0x01, 0x03, 0x00, 0x02, 0xfe
2019-05-09 22:43:46.755 Detail, contrlr, Queuing (Command) FUNC_ID_SERIAL_API_SET_TIMEOUTS: 0x01, 0x05, 0x00, 0x06, 0x64, 0x0f, 0x97
2019-05-09 22:43:46.755 Detail, contrlr, Queuing (Command) FUNC_ID_SERIAL_API_APPL_NODE_INFORMATION: 0x01, 0x08, 0x00, 0x03, 0x01, 0x02, 0x01, 0x01, 0x5e, 0xa9
2019-05-09 22:43:46.755 Detail, Expected reply was received
2019-05-09 22:43:46.755 Detail, Message transaction complete
2019-05-09 22:43:46.755 Detail,
2019-05-09 22:43:46.755 Detail, contrlr, Removing current message
2019-05-09 22:43:46.756 Detail,
2019-05-09 22:43:46.756 Info, contrlr, Sending (Command) message (Callback ID=0x00, Expected Reply=0x56) - FUNC_ID_ZW_GET_SUC_NODE_ID: 0x01, 0x03, 0x00, 0x56, 0xaa
2019-05-09 22:43:46.756 Info, contrlr, Encrypted Flag is 0
2019-05-09 22:43:46.758 Detail, contrlr, Received: 0x01, 0x04, 0x01, 0x56, 0x00, 0xac
2019-05-09 22:43:46.758 Detail,
2019-05-09 22:43:46.758 Info, contrlr, Received reply to GET_SUC_NODE_ID. Node ID = 0
2019-05-09 22:43:46.758 Info, Controller Does not Support SUC - Cannot Setup Controller as SUC Node
2019-05-09 22:43:46.758 Detail, Node172, Expected reply was received
2019-05-09 22:43:46.758 Detail, Node172, Message transaction complete
2019-05-09 22:43:46.758 Detail,
2019-05-09 22:43:46.758 Detail, contrlr, Removing current message
2019-05-09 22:43:46.759 Detail,
2019-05-09 22:43:46.759 Info, contrlr, Sending (Command) message (Callback ID=0x00, Expected Reply=0x1c) - FUNC_ID_ZW_GET_RANDOM: 0x01, 0x04, 0x00, 0x1c, 0x20, 0xc7
2019-05-09 22:43:46.759 Info, contrlr, Encrypted Flag is 0
2019-05-09 22:43:46.814 Detail, contrlr, Received: 0x01, 0x25, 0x01, 0x1c, 0x01, 0x20, 0xed, 0xf0, 0xed, 0x5f, 0x1b, 0x19, 0xf4, 0x46, 0x51, 0xd6, 0xe4, 0xed, 0x58, 0x16, 0x8d, 0x7e, 0x43, 0x4a, 0x36, 0x57, 0xe8, 0xba, 0x34, 0x4b, 0x57, 0x7c, 0x48, 0x72, 0x37, 0x06, 0x3f, 0x1a, 0x8a
2019-05-09 22:43:46.815 Detail,
2019-05-09 22:43:46.815 Info, Received reply to FUNC_ID_ZW_GET_RANDOM: true
2019-05-09 22:43:46.815 Detail, Node032, Expected reply was received
2019-05-09 22:43:46.815 Detail, Node032, Message transaction complete
2019-05-09 22:43:46.815 Detail,
2019-05-09 22:43:46.815 Detail, contrlr, Removing current message
2019-05-09 22:43:46.815 Detail,
2019-05-09 22:43:46.815 Info, contrlr, Sending (Command) message (Callback ID=0x00, Expected Reply=0x02) - FUNC_ID_SERIAL_API_GET_INIT_DATA: 0x01, 0x03, 0x00, 0x02, 0xfe
2019-05-09 22:43:46.815 Info, contrlr, Encrypted Flag is 0
2019-05-09 22:43:46.916 Detail, contrlr, Received: 0x01, 0x25, 0x01, 0x02, 0x05, 0x00, 0x1d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0xc7
2019-05-09 22:43:46.917 Detail,
2019-05-09 22:43:46.917 Info, mgr, Driver with Home ID of 0xdf3042b0 is now ready.
2019-05-09 22:43:46.917 Info,
2019-05-09 22:43:46.917 Info, contrlr, Received reply to FUNC_ID_SERIAL_API_GET_INIT_DATA:
2019-05-09 22:43:46.917 Info, contrlr, Node 001 - New
2019-05-09 22:43:46.917 Detail, Node001, AdvanceQueries queryPending=0 queryRetries=0 queryStage=None live=1
2019-05-09 22:43:46.917 Detail, Node001, QueryStage_ProtocolInfo
2019-05-09 22:43:46.918 Detail, Node001, Queuing (Query) Get Node Protocol Info (Node=1): 0x01, 0x04, 0x00, 0x41, 0x01, 0xbb
2019-05-09 22:43:46.918 Detail, Node001, Queuing (Query) Query Stage Complete (ProtocolInfo)
2019-05-09 22:43:46.918 Info, Node001, Initializing Node. New Node: false (false)
2019-05-09 22:43:46.918 Info, contrlr, Node 002 - New
2019-05-09 22:43:46.918 Detail, Node002, AdvanceQueries queryPending=0 queryRetries=0 queryStage=None live=1
2019-05-09 22:43:46.918 Detail, Node002, QueryStage_ProtocolInfo
2019-05-09 22:43:46.918 Detail, Node002, Queuing (Query) Get Node Protocol Info (Node=2): 0x01, 0x04, 0x00, 0x41, 0x02, 0xb8
2019-05-09 22:43:46.918 Detail, Node002, Queuing (Query) Query Stage Complete (ProtocolInfo)
2019-05-09 22:43:46.918 Info, Node002, Initializing Node. New Node: false (false)
2019-05-09 22:43:46.919 Detail, Expected reply was received
2019-05-09 22:43:46.919 Detail, Message transaction complete
2019-05-09 22:43:46.919 Detail,
2019-05-09 22:43:46.919 Detail, contrlr, Removing current message
2019-05-09 22:43:46.919 Detail, Node001, Notification: DriverReady
Notification: DriverReady
Driver ready with HomeID: 0xdf3042b0
Controller has extended TxStatus.
2019-05-09 22:43:46.919 Detail, Node001, Notification: NodeNew
Notification: NodeNew
2019-05-09 22:43:46.919 Detail, Node001, Notification: NodeAdded
Notification: NodeAdded
2019-05-09 22:43:46.920 Detail, Node002, Notification: NodeNew
Notification: NodeNew
2019-05-09 22:43:46.920 Detail, Node002, Notification: NodeAdded
Notification: NodeAdded
2019-05-09 22:43:46.920 Detail,
2019-05-09 22:43:46.920 Info, contrlr, Sending (Command) message (Callback ID=0x00, Expected Reply=0x06) - FUNC_ID_SERIAL_API_SET_TIMEOUTS: 0x01, 0x05, 0x00, 0x06, 0x64, 0x0f, 0x97
2019-05-09 22:43:46.920 Info, contrlr, Encrypted Flag is 0
2019-05-09 22:43:46.928 Detail, contrlr, Received: 0x01, 0x05, 0x01, 0x06, 0x64, 0x0f, 0x96
2019-05-09 22:43:46.928 Detail,
2019-05-09 22:43:46.928 Info, contrlr, Received reply to FUNC_ID_SERIAL_API_SET_TIMEOUTS
2019-05-09 22:43:46.928 Detail, Node015, Expected reply was received
2019-05-09 22:43:46.928 Detail, Node015, Message transaction complete
2019-05-09 22:43:46.928 Detail,
2019-05-09 22:43:46.928 Detail, contrlr, Removing current message
2019-05-09 22:43:46.929 Detail,
2019-05-09 22:43:46.929 Info, contrlr, Sending (Command) message (Callback ID=0x00, Expected Reply=0x00) - FUNC_ID_SERIAL_API_APPL_NODE_INFORMATION: 0x01, 0x08, 0x00, 0x03, 0x01, 0x02, 0x01, 0x01, 0x5e, 0xa9
2019-05-09 22:43:46.929 Info, contrlr, Encrypted Flag is 0
2019-05-09 22:43:46.930 Detail, contrlr, Removing current message
2019-05-09 22:43:46.931 Detail,
2019-05-09 22:43:46.931 Info, Node001, Sending (Query) message (Callback ID=0x00, Expected Reply=0x41) - Get Node Protocol Info (Node=1): 0x01, 0x04, 0x00, 0x41, 0x01, 0xbb
2019-05-09 22:43:46.931 Info, Node001, Encrypted Flag is 0
2019-05-09 22:43:46.934 Detail, Node001, Received: 0x01, 0x09, 0x01, 0x41, 0x93, 0x16, 0x01, 0x02, 0x02, 0x01, 0x33
2019-05-09 22:43:46.934 Detail,
2019-05-09 22:43:46.934 Info, Node001, Received reply to FUNC_ID_ZW_GET_NODE_PROTOCOL_INFO
2019-05-09 22:43:46.934 Info, Node001, Protocol Info for Node 1:
2019-05-09 22:43:46.934 Info, Node001, Listening = true
2019-05-09 22:43:46.934 Info, Node001, Beaming = true
2019-05-09 22:43:46.934 Info, Node001, Routing = false
2019-05-09 22:43:46.934 Info, Node001, Max Baud Rate = 40000
2019-05-09 22:43:46.934 Info, Node001, Version = 4
2019-05-09 22:43:46.934 Info, Node001, Security = false
2019-05-09 22:43:46.948 Info, Node001, Basic device class (0x02) - Static Controller
2019-05-09 22:43:46.948 Info, Node001, Generic device Class (0x02) - Static Controller
2019-05-09 22:43:46.948 Info, Node001, Specific device class (0x01) - Static PC Controller
2019-05-09 22:43:46.948 Info, Node001, COMMAND_CLASS_BASIC is not mapped
2019-05-09 22:43:46.949 Info, Node001, Mandatory Command Classes for Node 1:
2019-05-09 22:43:46.949 Info, Node001, COMMAND_CLASS_MANUFACTURER_SPECIFIC
2019-05-09 22:43:46.949 Info, Node001, Mandatory Command Classes controlled by Node 1:
2019-05-09 22:43:46.949 Info, Node001, COMMAND_CLASS_BASIC
2019-05-09 22:43:46.949 Info, Node001, Advertised CommandClasses on Controller Node:
2019-05-09 22:43:46.949 Info, Node001, COMMAND_CLASS_ZWAVEPLUS_INFO
2019-05-09 22:43:46.949 Detail, Node022, Expected reply was received
2019-05-09 22:43:46.949 Detail, Node022, Message transaction complete
2019-05-09 22:43:46.950 Detail,
2019-05-09 22:43:46.950 Detail, Node001, Removing current message
2019-05-09 22:43:46.950 Detail, Node001, Notification: NodeProtocolInfo
Notification: NodeProtocolInfo
2019-05-09 22:43:46.950 Detail, Node001, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:46.950 Detail, Node001, Query Stage Complete (ProtocolInfo)
2019-05-09 22:43:46.950 Detail, Node001, AdvanceQueries queryPending=0 queryRetries=0 queryStage=Probe live=1
2019-05-09 22:43:46.950 Detail, Node001, QueryStage_Probe
2019-05-09 22:43:46.950 Detail, Node001, QueryStage_WakeUp
2019-05-09 22:43:46.951 Detail, Node001, QueryStage_ManufacturerSpecific1
2019-05-09 22:43:46.951 Detail, Node001, Load Controller Manufacturer Specific Config
2019-05-09 22:43:46.951 Info, Node001, Opening config param file /usr/local/etc/openzwave/aeotec/zw090.xml
2019-05-09 22:43:46.954 Detail, Node001, Initial read of value
2019-05-09 22:43:46.955 Info, Node001, Queuing Lookup on 005a.0001.0086.db.openzwave.com for Node 1
2019-05-09 22:43:46.955 Detail, Node001, Initial read of value
2019-05-09 22:43:46.955 Info, Node001, Configuration File Revision is 6
2019-05-09 22:43:46.955 Info, LookupTxT Checking 005a.0001.0086.db.openzwave.com
2019-05-09 22:43:46.955 Info, Node001, (COMMAND_CLASS_CONFIGURATION) - Compatibility Flags: (* = default)
2019-05-09 22:43:46.955 Info, Node001, CreateVars: true *
2019-05-09 22:43:46.955 Info, Node001, ForceVersion: 0 *
2019-05-09 22:43:46.955 Info, Node001, GetSupported: true *
2019-05-09 22:43:46.955 Info, Node001, OverridePrecision: 0 *
2019-05-09 22:43:46.955 Info, Node001, RefreshOnWakeup: false *
2019-05-09 22:43:46.956 Info, Node001, (COMMAND_CLASS_CONFIGURATION) - Compatibility Flags: (* = default)
2019-05-09 22:43:46.956 Info, Node001, AfterMark: false *
2019-05-09 22:43:46.956 Info, Node001, CCVersion: 1 *
2019-05-09 22:43:46.956 Info, Node001, Encrypted: false *
2019-05-09 22:43:46.956 Info, Node001, InNif: false *
2019-05-09 22:43:46.956 Info, Node001, StaticRequests: 0 *
2019-05-09 22:43:46.957 Info, Missing default integer value from xml configuration: node 1, class 0x70, instance 1, index 243
2019-05-09 22:43:46.958 Detail, Node001, QueryStage_NodePlusInfo
2019-05-09 22:43:46.958 Detail, Node001, QueryStage_SecurityReport
2019-05-09 22:43:46.958 Detail, Node001, QueryStage_ManufacturerSpecific2
2019-05-09 22:43:46.958 Detail, Node001, QueryStage_Versions
2019-05-09 22:43:46.958 Detail, Node001, QueryStage_Instances
2019-05-09 22:43:46.958 Info, Node001, Essential node queries are complete
2019-05-09 22:43:46.958 Detail, Node001, QueryStage_Static
2019-05-09 22:43:46.958 Detail, Node001, QueryStage_Associations
2019-05-09 22:43:46.958 Detail, Node001, QueryStage_Neighbors
2019-05-09 22:43:46.958 Detail, Requesting routing info (neighbor list) for Node 1
2019-05-09 22:43:46.958 Detail, Node001, Queuing (Command) Get Routing Info (Node=1): 0x01, 0x07, 0x00, 0x80, 0x01, 0x00, 0x00, 0x03, 0x7a
2019-05-09 22:43:46.958 Detail, Node001, Queuing (Query) Query Stage Complete (Neighbors)
2019-05-09 22:43:46.959 Detail, Node001, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:46.959 Detail, Node001, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:46.959 Detail, Node001, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:46.959 Detail, Node001, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:46.959 Detail, Node001, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:46.959 Detail, Node001, Notification: ValueChanged
Notification: ValueChanged
2019-05-09 22:43:46.959 Detail, Node001, Notification: ValueChanged
Notification: ValueChanged
2019-05-09 22:43:46.959 Detail, Node001, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:46.959 Detail, Node001, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:46.959 Detail, Node001, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:46.960 Detail, Node001, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:46.960 Detail, Node001, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:46.960 Detail, Node001, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:46.960 Detail, Node001, Notification: EssentialNodeQueriesComplete
Notification: EssentialNodeQueriesComplete
2019-05-09 22:43:46.960 Detail,
2019-05-09 22:43:46.960 Info, Node001, Sending (Command) message (Callback ID=0x00, Expected Reply=0x80) - Get Routing Info (Node=1): 0x01, 0x07, 0x00, 0x80, 0x01, 0x00, 0x00, 0x03, 0x7a
2019-05-09 22:43:46.960 Info, Node001, Encrypted Flag is 0
2019-05-09 22:43:46.965 Detail, Node001, Received: 0x01, 0x20, 0x01, 0x80, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5c
2019-05-09 22:43:46.965 Detail,
2019-05-09 22:43:46.965 Info, Node001, Received reply to FUNC_ID_ZW_GET_ROUTING_INFO
2019-05-09 22:43:46.965 Info, Node001, Neighbors of this node are:
2019-05-09 22:43:46.965 Info, Node001, Node 2
2019-05-09 22:43:46.965 Detail, Expected reply was received
2019-05-09 22:43:46.966 Detail, Message transaction complete
2019-05-09 22:43:46.966 Detail,
2019-05-09 22:43:46.966 Detail, Node001, Removing current message
2019-05-09 22:43:46.966 Detail,
2019-05-09 22:43:46.966 Info, Node002, Sending (Query) message (Callback ID=0x00, Expected Reply=0x41) - Get Node Protocol Info (Node=2): 0x01, 0x04, 0x00, 0x41, 0x02, 0xb8
2019-05-09 22:43:46.966 Info, Node002, Encrypted Flag is 0
2019-05-09 22:43:46.969 Detail, Node002, Received: 0x01, 0x09, 0x01, 0x41, 0xd3, 0x9c, 0x01, 0x04, 0x21, 0x01, 0xdc
2019-05-09 22:43:46.969 Detail,
2019-05-09 22:43:46.969 Info, Node002, Received reply to FUNC_ID_ZW_GET_NODE_PROTOCOL_INFO
2019-05-09 22:43:46.969 Info, Node002, Protocol Info for Node 2:
2019-05-09 22:43:46.969 Info, Node002, Listening = true
2019-05-09 22:43:46.969 Info, Node002, Beaming = true
2019-05-09 22:43:46.969 Info, Node002, Routing = true
2019-05-09 22:43:46.969 Info, Node002, Max Baud Rate = 40000
2019-05-09 22:43:46.969 Info, Node002, Version = 4
2019-05-09 22:43:46.970 Info, Node002, Security = false
2019-05-09 22:43:46.970 Info, Node002, Basic device class (0x04) - Routing Slave
2019-05-09 22:43:46.970 Info, Node002, Generic device Class (0x21) - Multilevel Sensor
2019-05-09 22:43:46.970 Info, Node002, Specific device class (0x01) - Routing Multilevel Sensor
2019-05-09 22:43:46.970 Info, Node002, COMMAND_CLASS_BASIC will be mapped to COMMAND_CLASS_SENSOR_MULTILEVEL
2019-05-09 22:43:46.970 Info, Node002, Mandatory Command Classes for Node 2:
2019-05-09 22:43:46.970 Info, Node002, COMMAND_CLASS_SENSOR_MULTILEVEL
2019-05-09 22:43:46.971 Info, Node002, COMMAND_CLASS_MANUFACTURER_SPECIFIC
2019-05-09 22:43:46.971 Info, Node002, Mandatory Command Classes controlled by Node 2:
2019-05-09 22:43:46.971 Info, Node002, COMMAND_CLASS_BASIC
2019-05-09 22:43:46.971 Detail, Node156, Expected reply was received
2019-05-09 22:43:46.971 Detail, Node156, Message transaction complete
2019-05-09 22:43:46.971 Detail,
2019-05-09 22:43:46.971 Detail, Node002, Removing current message
2019-05-09 22:43:46.971 Detail, Node002, Notification: NodeProtocolInfo
Notification: NodeProtocolInfo
2019-05-09 22:43:46.971 Detail, Node002, Query Stage Complete (ProtocolInfo)
2019-05-09 22:43:46.971 Detail, Node002, AdvanceQueries queryPending=0 queryRetries=0 queryStage=Probe live=1
2019-05-09 22:43:46.971 Detail, Node002, QueryStage_Probe
2019-05-09 22:43:46.972 Info, Node002, NoOperation::Set - Routing=true
2019-05-09 22:43:46.972 Detail, Node002, Queuing (NoOp) NoOperation_Set (Node=2): 0x01, 0x09, 0x00, 0x13, 0x02, 0x02, 0x00, 0x00, 0x25, 0x0a, 0xca
2019-05-09 22:43:46.972 Detail, Node002, Queuing (Query) Query Stage Complete (Probe)
2019-05-09 22:43:46.972 Detail,
2019-05-09 22:43:46.972 Info, Node002, Sending (NoOp) message (Callback ID=0x0a, Expected Reply=0x13) - NoOperation_Set (Node=2): 0x01, 0x09, 0x00, 0x13, 0x02, 0x02, 0x00, 0x00, 0x25, 0x0a, 0xca
2019-05-09 22:43:46.972 Info, Node002, Encrypted Flag is 0
2019-05-09 22:43:46.980 Detail, Node002, Received: 0x01, 0x04, 0x01, 0x13, 0x01, 0xe8
2019-05-09 22:43:46.980 Detail, Node002, ZW_SEND_DATA delivered to Z-Wave stack
2019-05-09 22:43:46.997 Detail, Node002, Received: 0x01, 0x07, 0x00, 0x13, 0x0a, 0x00, 0x00, 0x02, 0xe3
2019-05-09 22:43:46.997 Detail, Node002, ZW_SEND_DATA Request with callback ID 0x0a received (expected 0x0a)
2019-05-09 22:43:46.997 Info, Node002, Request RTT 24 Average Request RTT 24
2019-05-09 22:43:46.997 Detail, Expected callbackId was received
2019-05-09 22:43:46.997 Detail, Expected reply was received
2019-05-09 22:43:46.997 Detail, Message transaction complete
2019-05-09 22:43:46.997 Detail,
2019-05-09 22:43:46.997 Detail, Node002, Removing current message
2019-05-09 22:43:46.998 Detail, Node002, Notification: Notification - NoOperation
Notification: Notification - NoOperation
2019-05-09 22:43:46.998 Detail, Node001, Query Stage Complete (Neighbors)
2019-05-09 22:43:46.998 Detail, Node001, AdvanceQueries queryPending=0 queryRetries=0 queryStage=Session live=1
2019-05-09 22:43:46.998 Detail, Node001, QueryStage_Session
2019-05-09 22:43:46.998 Detail, Node001, QueryStage_Dynamic
2019-05-09 22:43:46.998 Detail, Node001, QueryStage_Configuration
2019-05-09 22:43:46.998 Detail, Node001, QueryStage_Complete
2019-05-09 22:43:46.998 Warning, CheckCompletedNodeQueries m_allNodesQueried=0 m_awakeNodesQueried=0
2019-05-09 22:43:46.998 Warning, CheckCompletedNodeQueries all=0, deadFound=0 sleepingOnly=0
2019-05-09 22:43:46.998 Info, Saving Cache
2019-05-09 22:43:47.000 Info, Node001, Cache Save for Node 1 as its QueryStage_Complete
2019-05-09 22:43:47.000 Info, Node002, Skipping Cache Save for Node 2 as its not QueryStage_Complete
2019-05-09 22:43:47.001 Detail, Node001, Notification: NodeQueriesComplete
Notification: NodeQueriesComplete
2019-05-09 22:43:47.001 Detail, Node002, Query Stage Complete (Probe)
2019-05-09 22:43:47.001 Detail, Node002, AdvanceQueries queryPending=0 queryRetries=0 queryStage=WakeUp live=1
2019-05-09 22:43:47.001 Detail, Node002, QueryStage_WakeUp
2019-05-09 22:43:47.001 Detail, Node002, QueryStage_ManufacturerSpecific1
2019-05-09 22:43:47.001 Detail, Node002, Checking for ManufacturerSpecific CC and Requesting values if present on this node
2019-05-09 22:43:47.002 Detail, Node002, Queuing (Query) ManufacturerSpecificCmd_Get (Node=2): 0x01, 0x09, 0x00, 0x13, 0x02, 0x02, 0x72, 0x04, 0x25, 0x0b, 0xbd
2019-05-09 22:43:47.002 Detail, Node002, Queuing (Query) Query Stage Complete (ManufacturerSpecific1)
2019-05-09 22:43:47.002 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.002 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.002 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.002 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.002 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.002 Detail,
2019-05-09 22:43:47.003 Info, Node002, Sending (Query) message (Callback ID=0x0b, Expected Reply=0x04) - ManufacturerSpecificCmd_Get (Node=2): 0x01, 0x09, 0x00, 0x13, 0x02, 0x02, 0x72, 0x04, 0x25, 0x0b, 0xbd
2019-05-09 22:43:47.003 Info, Node002, Encrypted Flag is 0
2019-05-09 22:43:47.011 Detail, Node002, Received: 0x01, 0x04, 0x01, 0x13, 0x01, 0xe8
2019-05-09 22:43:47.011 Detail, Node002, ZW_SEND_DATA delivered to Z-Wave stack
2019-05-09 22:43:47.027 Detail, Node002, Received: 0x01, 0x07, 0x00, 0x13, 0x0b, 0x00, 0x00, 0x02, 0xe2
2019-05-09 22:43:47.027 Detail, Node002, ZW_SEND_DATA Request with callback ID 0x0b received (expected 0x0b)
2019-05-09 22:43:47.027 Info, Node002, Request RTT 24 Average Request RTT 24
2019-05-09 22:43:47.027 Detail, Expected callbackId was received
2019-05-09 22:43:47.039 Detail, Node002, Received: 0x01, 0x0e, 0x00, 0x04, 0x00, 0x02, 0x08, 0x72, 0x05, 0x00, 0x86, 0x00, 0x02, 0x00, 0x64, 0x68
2019-05-09 22:43:47.039 Detail,
2019-05-09 22:43:47.039 Info, Node002, Response RTT 36 Average Response RTT 36
2019-05-09 22:43:47.039 Info, Node002, Opening config param file /usr/local/etc/openzwave/aeotec/zw100.xml
2019-05-09 22:43:47.056 Detail, Node002, Initial read of value
2019-05-09 22:43:47.056 Info, Node002, Queuing Lookup on 0064.0002.0086.db.openzwave.com for Node 2
2019-05-09 22:43:47.057 Detail, Node002, Initial read of value
2019-05-09 22:43:47.057 Info, Node002, Configuration File Revision is 19
2019-05-09 22:43:47.057 Info, Node002, (COMMAND_CLASS_CONFIGURATION) - Compatibility Flags: (* = default)
2019-05-09 22:43:47.057 Info, Node002, CreateVars: true *
2019-05-09 22:43:47.057 Info, Node002, ForceVersion: 0 *
2019-05-09 22:43:47.057 Info, Node002, GetSupported: true *
2019-05-09 22:43:47.057 Info, Node002, OverridePrecision: 0 *
2019-05-09 22:43:47.057 Info, Node002, RefreshOnWakeup: false *
2019-05-09 22:43:47.057 Info, Node002, (COMMAND_CLASS_CONFIGURATION) - Compatibility Flags: (* = default)
2019-05-09 22:43:47.058 Info, Node002, AfterMark: false *
2019-05-09 22:43:47.058 Info, Node002, CCVersion: 1 *
2019-05-09 22:43:47.058 Info, Node002, Encrypted: false *
2019-05-09 22:43:47.058 Info, Node002, InNif: false *
2019-05-09 22:43:47.058 Info, Node002, StaticRequests: 0 *
2019-05-09 22:43:47.061 Info, Node002, (COMMAND_CLASS_NOTIFICATION) - Compatibility Flags: (* = default)
2019-05-09 22:43:47.061 Info, Node002, CreateVars: true *
2019-05-09 22:43:47.061 Info, Node002, ForceVersion: 0 *
2019-05-09 22:43:47.061 Info, Node002, GetSupported: false *
2019-05-09 22:43:47.061 Info, Node002, OverridePrecision: 0 *
2019-05-09 22:43:47.061 Info, Node002, RefreshOnWakeup: false *
2019-05-09 22:43:47.061 Info, Node002, (COMMAND_CLASS_NOTIFICATION) - Compatibility Flags: (* = default)
2019-05-09 22:43:47.061 Info, Node002, AfterMark: false *
2019-05-09 22:43:47.061 Info, Node002, CCVersion: 1 *
2019-05-09 22:43:47.062 Info, Node002, Encrypted: false *
2019-05-09 22:43:47.062 Info, Node002, InNif: false *
2019-05-09 22:43:47.062 Info, Node002, StaticRequests: 2
2019-05-09 22:43:47.062 Info, Node002, (COMMAND_CLASS_ASSOCIATION) - Compatibility Flags: (* = default)
2019-05-09 22:43:47.062 Info, Node002, CreateVars: true *
2019-05-09 22:43:47.062 Info, Node002, ForceVersion: 0 *
2019-05-09 22:43:47.062 Info, Node002, GetSupported: true *
2019-05-09 22:43:47.062 Info, Node002, OverridePrecision: 0 *
2019-05-09 22:43:47.062 Info, Node002, RefreshOnWakeup: false *
2019-05-09 22:43:47.062 Info, Node002, (COMMAND_CLASS_ASSOCIATION) - Compatibility Flags: (* = default)
2019-05-09 22:43:47.062 Info, Node002, AfterMark: false *
2019-05-09 22:43:47.063 Info, Node002, CCVersion: 1 *
2019-05-09 22:43:47.063 Info, Node002, Encrypted: false *
2019-05-09 22:43:47.063 Info, Node002, InNif: false *
2019-05-09 22:43:47.063 Info, Node002, StaticRequests: 2
2019-05-09 22:43:47.064 Info, Node002, Received manufacturer specific report from node 2: Manufacturer=AEON Labs, Product=ZW100 MultiSensor 6
2019-05-09 22:43:47.064 Info, Node002, Node Identity Codes: 0086:0002:0064
2019-05-09 22:43:47.064 Detail, Node002, Expected reply and command class was received
2019-05-09 22:43:47.064 Detail, Node002, Message transaction complete
2019-05-09 22:43:47.064 Detail,
2019-05-09 22:43:47.065 Detail, Node002, Removing current message
2019-05-09 22:43:47.065 Detail, Node002, Notification: ValueChanged
Notification: ValueChanged
2019-05-09 22:43:47.065 Detail, Node002, Notification: ValueChanged
Notification: ValueChanged
2019-05-09 22:43:47.065 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.065 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.065 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.065 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.065 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.065 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.065 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.066 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.066 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.066 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.066 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.066 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.066 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.066 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.066 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.066 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.066 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.066 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.067 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.067 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.067 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.067 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.067 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.067 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.067 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.067 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.067 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.067 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.067 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.067 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.068 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.068 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.068 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.068 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.068 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.068 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.068 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.068 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.068 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.068 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.069 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.069 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.069 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.069 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.069 Detail, Node002, Notification: Group
Notification: Group
2019-05-09 22:43:47.069 Detail, Node002, Notification: NodeNaming
Notification: NodeNaming
2019-05-09 22:43:47.069 Detail, Node002, Query Stage Complete (ManufacturerSpecific1)
2019-05-09 22:43:47.070 Detail, Node002, AdvanceQueries queryPending=0 queryRetries=0 queryStage=NodeInfo live=1
2019-05-09 22:43:47.070 Detail, Node002, QueryStage_NodeInfo
2019-05-09 22:43:47.070 Detail, Node002, Queuing (Query) Request Node Info (Node=2): 0x01, 0x04, 0x00, 0x60, 0x02, 0x99
2019-05-09 22:43:47.070 Detail, Node002, Queuing (Query) Query Stage Complete (NodeInfo)
2019-05-09 22:43:47.070 Detail,
2019-05-09 22:43:47.071 Info, Node002, Sending (Query) message (Callback ID=0x00, Expected Reply=0x49) - Request Node Info (Node=2): 0x01, 0x04, 0x00, 0x60, 0x02, 0x99
2019-05-09 22:43:47.071 Info, Node002, Encrypted Flag is 0
2019-05-09 22:43:47.079 Detail, Node002, Received: 0x01, 0x04, 0x01, 0x60, 0x01, 0x9b
2019-05-09 22:43:47.079 Detail,
2019-05-09 22:43:47.079 Info, Node155, FUNC_ID_ZW_REQUEST_NODE_INFO Request successful.
2019-05-09 22:43:47.111 Detail, Node002, Received: 0x01, 0x18, 0x00, 0x49, 0x84, 0x02, 0x12, 0x04, 0x21, 0x01, 0x5e, 0x86, 0x72, 0x59, 0x85, 0x73, 0x71, 0x84, 0x80, 0x30, 0x31, 0x70, 0x7a, 0x5a, 0xef, 0xd0
2019-05-09 22:43:47.111 Detail,
2019-05-09 22:43:47.111 Info, Node002, UPDATE_STATE_NODE_INFO_RECEIVED from node 2
2019-05-09 22:43:47.111 Info, Node002, Optional command classes for node 2:
2019-05-09 22:43:47.111 Info, Node002, COMMAND_CLASS_ZWAVEPLUS_INFO
2019-05-09 22:43:47.111 Info, Node002, COMMAND_CLASS_VERSION
2019-05-09 22:43:47.111 Info, Node002, COMMAND_CLASS_MANUFACTURER_SPECIFIC (Existing)
2019-05-09 22:43:47.112 Info, Node002, CommandClass 0x59 - NOT REQUIRED
2019-05-09 22:43:47.112 Info, Node002, COMMAND_CLASS_ASSOCIATION (Existing)
2019-05-09 22:43:47.112 Info, Node002, COMMAND_CLASS_POWERLEVEL
2019-05-09 22:43:47.112 Info, Node002, COMMAND_CLASS_NOTIFICATION (Existing)
2019-05-09 22:43:47.112 Info, Node002, COMMAND_CLASS_WAKE_UP
2019-05-09 22:43:47.113 Info, Node002, COMMAND_CLASS_BATTERY
2019-05-09 22:43:47.113 Info, Node002, COMMAND_CLASS_SENSOR_BINARY
2019-05-09 22:43:47.113 Info, Node002, COMMAND_CLASS_SENSOR_MULTILEVEL (Existing)
2019-05-09 22:43:47.113 Info, Node002, COMMAND_CLASS_CONFIGURATION (Existing)
2019-05-09 22:43:47.113 Info, Node002, CommandClass 0x7a - NOT REQUIRED
2019-05-09 22:43:47.113 Info, Node002, COMMAND_CLASS_DEVICE_RESET_LOCALLY
2019-05-09 22:43:47.113 Info, Node002, Optional command classes controlled by node 2:
2019-05-09 22:43:47.113 Info, Node002, None
2019-05-09 22:43:47.113 Detail, Node002, AdvanceQueries queryPending=1 queryRetries=0 queryStage=NodeInfo live=1
2019-05-09 22:43:47.114 Detail, Node002, Expected reply was received
2019-05-09 22:43:47.114 Detail, Node002, Message transaction complete
2019-05-09 22:43:47.114 Detail,
2019-05-09 22:43:47.114 Detail, Node002, Removing current message
2019-05-09 22:43:47.114 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.114 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.114 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.114 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.114 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.115 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.115 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.115 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.115 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.115 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.115 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.115 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.115 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.115 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.115 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.115 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.116 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.116 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.116 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.116 Detail, Node002, Query Stage Complete (NodeInfo)
2019-05-09 22:43:47.116 Detail, Node002, AdvanceQueries queryPending=0 queryRetries=0 queryStage=NodePlusInfo live=1
2019-05-09 22:43:47.116 Detail, Node002, QueryStage_NodePlusInfo
2019-05-09 22:43:47.116 Detail, Node002, Queuing (Query) ZWavePlusInfoCmd_Get (Node=2): 0x01, 0x09, 0x00, 0x13, 0x02, 0x02, 0x5e, 0x01, 0x25, 0x0c, 0x93
2019-05-09 22:43:47.116 Detail, Node002, Queuing (Query) Query Stage Complete (NodePlusInfo)
2019-05-09 22:43:47.116 Detail,
2019-05-09 22:43:47.116 Info, Node002, Sending (Query) message (Callback ID=0x0c, Expected Reply=0x04) - ZWavePlusInfoCmd_Get (Node=2): 0x01, 0x09, 0x00, 0x13, 0x02, 0x02, 0x5e, 0x01, 0x25, 0x0c, 0x93
2019-05-09 22:43:47.116 Info, Node002, Encrypted Flag is 0
2019-05-09 22:43:47.125 Detail, Node002, Received: 0x01, 0x04, 0x01, 0x13, 0x01, 0xe8
2019-05-09 22:43:47.125 Detail, Node002, ZW_SEND_DATA delivered to Z-Wave stack
2019-05-09 22:43:47.141 Detail, Node002, Received: 0x01, 0x07, 0x00, 0x13, 0x0c, 0x00, 0x00, 0x02, 0xe5
2019-05-09 22:43:47.141 Detail, Node002, ZW_SEND_DATA Request with callback ID 0x0c received (expected 0x0c)
2019-05-09 22:43:47.141 Info, Node002, Request RTT 24 Average Request RTT 24
2019-05-09 22:43:47.141 Detail, Expected callbackId was received
2019-05-09 22:43:47.153 Detail, Node002, Received: 0x01, 0x0f, 0x00, 0x04, 0x00, 0x02, 0x09, 0x5e, 0x02, 0x01, 0x05, 0x00, 0x0c, 0x07, 0x0c, 0x07, 0xa7
2019-05-09 22:43:47.153 Detail,
2019-05-09 22:43:47.153 Info, Node002, Response RTT 36 Average Response RTT 36
2019-05-09 22:43:47.153 Info, Node002, ZWave+ Info Received from Node 2
2019-05-09 22:43:47.153 Info, Node002, Zwave+ Node Type (0x00) - Z-Wave+ node. Mandatory Command Classes:
2019-05-09 22:43:47.153 Info, Node002, NONE
2019-05-09 22:43:47.153 Info, Node002, Zwave+ Device Type (0xc07) - Home Security Sensor. Mandatory Command Classes:
2019-05-09 22:43:47.153 Info, Node002, COMMAND_CLASS_DEVICE_RESET_LOCALLY
2019-05-09 22:43:47.153 Info, Node002, COMMAND_CLASS_ZWAVEPLUS_INFO
2019-05-09 22:43:47.153 Info, Node002, 0x59 (Not Supported)
2019-05-09 22:43:47.154 Info, Node002, COMMAND_CLASS_MANUFACTURER_SPECIFIC
2019-05-09 22:43:47.154 Info, Node002, COMMAND_CLASS_POWERLEVEL
2019-05-09 22:43:47.154 Info, Node002, COMMAND_CLASS_ASSOCIATION
2019-05-09 22:43:47.154 Info, Node002, COMMAND_CLASS_VERSION
2019-05-09 22:43:47.154 Info, Node002, COMMAND_CLASS_SENSOR_BINARY
2019-05-09 22:43:47.154 Info, Node002, ZWave+ Role Type (0x21) - Always On Slave
2019-05-09 22:43:47.154 Info, Node002, COMMAND_CLASS_DEVICE_RESET_LOCALLY
2019-05-09 22:43:47.154 Detail, Node002, Initial read of value
2019-05-09 22:43:47.154 Detail, Node002, Initial read of value
2019-05-09 22:43:47.154 Detail, Node002, Initial read of value
2019-05-09 22:43:47.154 Detail, Node002, Expected reply and command class was received
2019-05-09 22:43:47.154 Detail, Node002, Message transaction complete
2019-05-09 22:43:47.155 Detail,
2019-05-09 22:43:47.155 Detail, Node002, Removing current message
2019-05-09 22:43:47.155 Detail, Node002, Notification: ValueChanged
Notification: ValueChanged
2019-05-09 22:43:47.155 Detail, Node002, Notification: ValueChanged
Notification: ValueChanged
2019-05-09 22:43:47.155 Detail, Node002, Notification: ValueChanged
Notification: ValueChanged
2019-05-09 22:43:47.155 Detail, Node002, Query Stage Complete (NodePlusInfo)
2019-05-09 22:43:47.155 Detail, Node002, AdvanceQueries queryPending=0 queryRetries=0 queryStage=SecurityReport live=1
2019-05-09 22:43:47.155 Detail, Node002, QueryStage_SecurityReport
2019-05-09 22:43:47.156 Info, Node002, Opening config param file /usr/local/etc/openzwave/aeotec/zw100.xml
2019-05-09 22:43:47.173 Info, Node002, (COMMAND_CLASS_CONFIGURATION) - Compatibility Flags: (* = default)
2019-05-09 22:43:47.173 Info, Node002, CreateVars: true *
2019-05-09 22:43:47.173 Info, Node002, ForceVersion: 0 *
2019-05-09 22:43:47.173 Info, Node002, GetSupported: true *
2019-05-09 22:43:47.173 Info, Node002, OverridePrecision: 0 *
2019-05-09 22:43:47.173 Info, Node002, RefreshOnWakeup: false *
2019-05-09 22:43:47.174 Info, Node002, (COMMAND_CLASS_CONFIGURATION) - Compatibility Flags: (* = default)
2019-05-09 22:43:47.174 Info, Node002, AfterMark: false *
2019-05-09 22:43:47.174 Info, Node002, CCVersion: 1 *
2019-05-09 22:43:47.174 Info, Node002, Encrypted: false *
2019-05-09 22:43:47.174 Info, Node002, InNif: true
2019-05-09 22:43:47.174 Info, Node002, StaticRequests: 4
2019-05-09 22:43:47.174 Warning, Localization::SetValueItemLabel: Duplicate Item Entry for CommandClass 112, ValueID: 2 (-1) itemIndex 0: Disable-fr (Lang: fr)
2019-05-09 22:43:47.174 Warning, Localization::SetValueItemLabel: Duplicate Item Entry for CommandClass 112, ValueID: 2 (-1) itemIndex 1: Enable-Fr (Lang: fr)
2019-05-09 22:43:47.175 Warning, Localization::ReadXMLVIDHelp: Error in /usr/local/etc/openzwave/aeotec/zw100.xml at line 122 - Duplicate Entry for CommandClass 112, ValueID: 48 (-1): French Help (Lang: fr)
2019-05-09 22:43:47.175 Warning, Localization::ReadXMLVIDLabel: Error in /usr/local/etc/openzwave/aeotec/zw100.xml at line 123 - Duplicate Entry for CommandClass 112, ValueID: 48 (-1): Enable/disable to send a report on Threshold-fr (Lang: fr)
2019-05-09 22:43:47.175 Warning, Localization::SetValueItemLabel: Duplicate Item Entry for CommandClass 112, ValueID: 48 (-1) itemIndex 1: Lower Temperature-fr (Lang: fr)
2019-05-09 22:43:47.176 Warning, Localization::SetValueItemHelp: Duplicate Item Entry for CommandClass 112, ValueID: 48 (-1) ItemIndex 1: Lower Temperature Threshold (Lang: )
2019-05-09 22:43:47.176 Warning, Localization::SetValueItemHelp: Duplicate Item Entry for CommandClass 112, ValueID: 48 (-1) ItemIndex 1: Lower Temperature Threshold-fr (Lang: fr)
2019-05-09 22:43:47.176 Warning, Localization::SetValueItemLabel: Duplicate Item Entry for CommandClass 112, ValueID: 48 (-1) itemIndex 2: Lower Humidity-fr (Lang: fr)
2019-05-09 22:43:47.176 Warning, Localization::SetValueItemHelp: Duplicate Item Entry for CommandClass 112, ValueID: 48 (-1) ItemIndex 2: Lower Humdity Threshold (Lang: )
2019-05-09 22:43:47.176 Warning, Localization::SetValueItemHelp: Duplicate Item Entry for CommandClass 112, ValueID: 48 (-1) ItemIndex 2: Lower Humdity Threshold-fr (Lang: fr)
2019-05-09 22:43:47.176 Warning, Localization::SetValueItemLabel: Duplicate Item Entry for CommandClass 112, ValueID: 48 (-1) itemIndex 3: Lower Luminance-fr (Lang: fr)
2019-05-09 22:43:47.176 Warning, Localization::SetValueItemHelp: Duplicate Item Entry for CommandClass 112, ValueID: 48 (-1) ItemIndex 3: Lower Luminance Threshold (Lang: )
2019-05-09 22:43:47.176 Warning, Localization::SetValueItemHelp: Duplicate Item Entry for CommandClass 112, ValueID: 48 (-1) ItemIndex 3: Lower Luminance Threshold (Lang: fr)
2019-05-09 22:43:47.177 Warning, Localization::SetValueItemLabel: Duplicate Item Entry for CommandClass 112, ValueID: 48 (-1) itemIndex 4: Lower Ultraviolet-fr (Lang: fr)
2019-05-09 22:43:47.177 Warning, Localization::SetValueItemHelp: Duplicate Item Entry for CommandClass 112, ValueID: 48 (-1) ItemIndex 4: Lower Ultraviolet Threshold (Lang: )
2019-05-09 22:43:47.177 Warning, Localization::SetValueItemHelp: Duplicate Item Entry for CommandClass 112, ValueID: 48 (-1) ItemIndex 4: Lower Ultraviolet Threshold-fr (Lang: fr)
2019-05-09 22:43:47.177 Warning, Localization::SetValueItemLabel: Duplicate Item Entry for CommandClass 112, ValueID: 48 (-1) itemIndex 5: Upper Temperature-fr (Lang: fr)
2019-05-09 22:43:47.177 Warning, Localization::SetValueItemHelp: Duplicate Item Entry for CommandClass 112, ValueID: 48 (-1) ItemIndex 5: Upper Temerature Threshold (Lang: )
2019-05-09 22:43:47.177 Warning, Localization::SetValueItemHelp: Duplicate Item Entry for CommandClass 112, ValueID: 48 (-1) ItemIndex 5: Upper Temerature Threshold-fr (Lang: fr)
2019-05-09 22:43:47.177 Warning, Localization::SetValueItemLabel: Duplicate Item Entry for CommandClass 112, ValueID: 48 (-1) itemIndex 6: Upper Humidity-fr (Lang: fr)
2019-05-09 22:43:47.177 Warning, Localization::SetValueItemHelp: Duplicate Item Entry for CommandClass 112, ValueID: 48 (-1) ItemIndex 6: Upper Humdity Threshold (Lang: )
2019-05-09 22:43:47.178 Warning, Localization::SetValueItemHelp: Duplicate Item Entry for CommandClass 112, ValueID: 48 (-1) ItemIndex 6: Upper Humdity Threshold-fr (Lang: fr)
2019-05-09 22:43:47.178 Warning, Localization::SetValueItemLabel: Duplicate Item Entry for CommandClass 112, ValueID: 48 (-1) itemIndex 7: Upper Luminance-fr (Lang: fr)
2019-05-09 22:43:47.178 Warning, Localization::SetValueItemHelp: Duplicate Item Entry for CommandClass 112, ValueID: 48 (-1) ItemIndex 7: Upper Luminance Threshold (Lang: )
2019-05-09 22:43:47.178 Warning, Localization::SetValueItemHelp: Duplicate Item Entry for CommandClass 112, ValueID: 48 (-1) ItemIndex 7: Upper Luminance Threshold-fr (Lang: fr)
2019-05-09 22:43:47.178 Warning, Localization::SetValueItemLabel: Duplicate Item Entry for CommandClass 112, ValueID: 48 (-1) itemIndex 8: Upper Ultraviolet-fr (Lang: fr)
2019-05-09 22:43:47.178 Warning, Localization::SetValueItemHelp: Duplicate Item Entry for CommandClass 112, ValueID: 48 (-1) ItemIndex 8: Upper Ultraviolet Threshold (Lang: )
2019-05-09 22:43:47.178 Warning, Localization::SetValueItemHelp: Duplicate Item Entry for CommandClass 112, ValueID: 48 (-1) ItemIndex 8: Upper Ultraviolet Threshold-fr (Lang: fr)
2019-05-09 22:43:47.179 Warning, Localization::SetValueItemHelp: Duplicate Item Entry for CommandClass 112, ValueID: 101 (-1) ItemIndex 1: Send Battery Report (Lang: )
2019-05-09 22:43:47.179 Warning, Localization::SetValueItemHelp: Duplicate Item Entry for CommandClass 112, ValueID: 101 (-1) ItemIndex 5: Send Ultraviolet Report (Lang: )
2019-05-09 22:43:47.179 Warning, Localization::SetValueItemHelp: Duplicate Item Entry for CommandClass 112, ValueID: 101 (-1) ItemIndex 6: Send Temperature Report (Lang: )
2019-05-09 22:43:47.179 Warning, Localization::SetValueItemHelp: Duplicate Item Entry for CommandClass 112, ValueID: 101 (-1) ItemIndex 7: Send Humidity Report (Lang: )
2019-05-09 22:43:47.179 Warning, Localization::SetValueItemHelp: Duplicate Item Entry for CommandClass 112, ValueID: 101 (-1) ItemIndex 8: Send Luminance Report (Lang: )
2019-05-09 22:43:47.180 Info, Node002, (COMMAND_CLASS_NOTIFICATION) - Compatibility Flags: (* = default)
2019-05-09 22:43:47.180 Info, Node002, CreateVars: true *
2019-05-09 22:43:47.180 Info, Node002, ForceVersion: 0 *
2019-05-09 22:43:47.180 Info, Node002, GetSupported: false *
2019-05-09 22:43:47.180 Info, Node002, OverridePrecision: 0 *
2019-05-09 22:43:47.180 Info, Node002, RefreshOnWakeup: false *
2019-05-09 22:43:47.181 Info, Node002, (COMMAND_CLASS_NOTIFICATION) - Compatibility Flags: (* = default)
2019-05-09 22:43:47.181 Info, Node002, AfterMark: false *
2019-05-09 22:43:47.181 Info, Node002, CCVersion: 1 *
2019-05-09 22:43:47.181 Info, Node002, Encrypted: false *
2019-05-09 22:43:47.181 Info, Node002, InNif: true
2019-05-09 22:43:47.181 Info, Node002, StaticRequests: 6
2019-05-09 22:43:47.181 Info, Node002, (COMMAND_CLASS_ASSOCIATION) - Compatibility Flags: (* = default)
2019-05-09 22:43:47.181 Info, Node002, CreateVars: true *
2019-05-09 22:43:47.181 Info, Node002, ForceVersion: 0 *
2019-05-09 22:43:47.181 Info, Node002, GetSupported: true *
2019-05-09 22:43:47.181 Info, Node002, OverridePrecision: 0 *
2019-05-09 22:43:47.181 Info, Node002, RefreshOnWakeup: false *
2019-05-09 22:43:47.181 Info, Node002, (COMMAND_CLASS_ASSOCIATION) - Compatibility Flags: (* = default)
2019-05-09 22:43:47.181 Info, Node002, AfterMark: false *
2019-05-09 22:43:47.181 Info, Node002, CCVersion: 1 *
2019-05-09 22:43:47.182 Info, Node002, Encrypted: false *
2019-05-09 22:43:47.182 Info, Node002, InNif: true
2019-05-09 22:43:47.182 Info, Node002, StaticRequests: 6
2019-05-09 22:43:47.183 Detail, Node002, QueryStage_Versions
2019-05-09 22:43:47.183 Info, Node002, Requesting Versions
2019-05-09 22:43:47.183 Info, Node002, Requesting Versions for COMMAND_CLASS_NO_OPERATION
2019-05-09 22:43:47.183 Info, Node002, Requesting Versions for COMMAND_CLASS_BASIC
2019-05-09 22:43:47.183 Info, Node002, Requesting Versions for COMMAND_CLASS_SENSOR_BINARY
2019-05-09 22:43:47.183 Info, Node002, Requesting Versions for COMMAND_CLASS_SENSOR_MULTILEVEL
2019-05-09 22:43:47.184 Detail, Node002, Queuing (Send) VersionCmd_CommandClassGet (Node=2): 0x01, 0x0a, 0x00, 0x13, 0x02, 0x03, 0x86, 0x13, 0x31, 0x25, 0x0d, 0x6b
2019-05-09 22:43:47.184 Info, Node002, Requesting Versions for COMMAND_CLASS_DEVICE_RESET_LOCALLY
2019-05-09 22:43:47.184 Info, Node002, Requesting Versions for COMMAND_CLASS_ZWAVEPLUS_INFO
2019-05-09 22:43:47.184 Info, Node002, Requesting Versions for COMMAND_CLASS_CONFIGURATION
2019-05-09 22:43:47.184 Info, Node002, Requesting Versions for COMMAND_CLASS_NOTIFICATION
2019-05-09 22:43:47.184 Detail, Node002, Queuing (Send) VersionCmd_CommandClassGet (Node=2): 0x01, 0x0a, 0x00, 0x13, 0x02, 0x03, 0x86, 0x13, 0x71, 0x25, 0x0e, 0x28
2019-05-09 22:43:47.184 Info, Node002, Requesting Versions for COMMAND_CLASS_MANUFACTURER_SPECIFIC
2019-05-09 22:43:47.184 Detail, Node002, Queuing (Send) VersionCmd_CommandClassGet (Node=2): 0x01, 0x0a, 0x00, 0x13, 0x02, 0x03, 0x86, 0x13, 0x72, 0x25, 0x0f, 0x2a
2019-05-09 22:43:47.184 Info, Node002, Requesting Versions for COMMAND_CLASS_POWERLEVEL
2019-05-09 22:43:47.184 Info, Node002, Requesting Versions for COMMAND_CLASS_BATTERY
2019-05-09 22:43:47.184 Info, Node002, Requesting Versions for COMMAND_CLASS_WAKE_UP
2019-05-09 22:43:47.185 Detail, Node002, Queuing (Send) VersionCmd_CommandClassGet (Node=2): 0x01, 0x0a, 0x00, 0x13, 0x02, 0x03, 0x86, 0x13, 0x84, 0x25, 0x10, 0xc3
2019-05-09 22:43:47.185 Info, Node002, Requesting Versions for COMMAND_CLASS_ASSOCIATION
2019-05-09 22:43:47.185 Info, Node002, Requesting Versions for COMMAND_CLASS_VERSION
2019-05-09 22:43:47.185 Detail, Node002, Queuing (Query) Query Stage Complete (Versions)
2019-05-09 22:43:47.185 Detail, Node002, Notification: Group
Notification: Group
2019-05-09 22:43:47.185 Detail,
2019-05-09 22:43:47.185 Info, Node002, Sending (Send) message (Callback ID=0x0d, Expected Reply=0x04) - VersionCmd_CommandClassGet (Node=2): 0x01, 0x0a, 0x00, 0x13, 0x02, 0x03, 0x86, 0x13, 0x31, 0x25, 0x0d, 0x6b
2019-05-09 22:43:47.185 Info, Node002, Encrypted Flag is 0
2019-05-09 22:43:47.194 Detail, Node002, Received: 0x01, 0x04, 0x01, 0x13, 0x01, 0xe8
2019-05-09 22:43:47.194 Detail, Node002, ZW_SEND_DATA delivered to Z-Wave stack
2019-05-09 22:43:47.209 Detail, Node002, Received: 0x01, 0x07, 0x00, 0x13, 0x0d, 0x00, 0x00, 0x03, 0xe5
2019-05-09 22:43:47.210 Detail, Node002, ZW_SEND_DATA Request with callback ID 0x0d received (expected 0x0d)
2019-05-09 22:43:47.210 Info, Node002, Request RTT 24 Average Request RTT 24
2019-05-09 22:43:47.210 Detail, Expected callbackId was received
2019-05-09 22:43:47.221 Detail, Node002, Received: 0x01, 0x0a, 0x00, 0x04, 0x00, 0x02, 0x04, 0x86, 0x14, 0x31, 0x05, 0x51
2019-05-09 22:43:47.221 Detail,
2019-05-09 22:43:47.221 Info, Node002, Response RTT 35 Average Response RTT 35
2019-05-09 22:43:47.222 Info, Node002, Received Command Class Version report from node 2: CommandClass=COMMAND_CLASS_SENSOR_MULTILEVEL, Version=5
2019-05-09 22:43:47.222 Detail, Node002, Expected reply and command class was received
2019-05-09 22:43:47.222 Detail, Node002, Message transaction complete
2019-05-09 22:43:47.222 Detail,
2019-05-09 22:43:47.222 Detail, Node002, Removing current message
2019-05-09 22:43:47.222 Detail,
2019-05-09 22:43:47.222 Info, Node002, Sending (Send) message (Callback ID=0x0e, Expected Reply=0x04) - VersionCmd_CommandClassGet (Node=2): 0x01, 0x0a, 0x00, 0x13, 0x02, 0x03, 0x86, 0x13, 0x71, 0x25, 0x0e, 0x28
2019-05-09 22:43:47.222 Info, Node002, Encrypted Flag is 0
2019-05-09 22:43:47.229 Info, Lookup for 005a.0001.0086.db.openzwave.com returned 6
2019-05-09 22:43:47.229 Info, LookupTxT Checking 0064.0002.0086.db.openzwave.com
2019-05-09 22:43:47.229 Detail, Node001, Initial read of value
2019-05-09 22:43:47.229 Detail, Node001, Notification: ValueChanged
Notification: ValueChanged
2019-05-09 22:43:47.231 Detail, Node002, Received: 0x01, 0x04, 0x01, 0x13, 0x01, 0xe8
2019-05-09 22:43:47.232 Detail, Node002, ZW_SEND_DATA delivered to Z-Wave stack
2019-05-09 22:43:47.247 Detail, Node002, Received: 0x01, 0x07, 0x00, 0x13, 0x0e, 0x00, 0x00, 0x02, 0xe7
2019-05-09 22:43:47.247 Detail, Node002, ZW_SEND_DATA Request with callback ID 0x0e received (expected 0x0e)
2019-05-09 22:43:47.247 Info, Node002, Request RTT 24 Average Request RTT 24
2019-05-09 22:43:47.247 Detail, Expected callbackId was received
2019-05-09 22:43:47.258 Detail, Node002, Received: 0x01, 0x0a, 0x00, 0x04, 0x00, 0x02, 0x04, 0x86, 0x14, 0x71, 0x03, 0x17
2019-05-09 22:43:47.259 Detail,
2019-05-09 22:43:47.259 Info, Node002, Response RTT 36 Average Response RTT 35
2019-05-09 22:43:47.259 Info, Node002, Received Command Class Version report from node 2: CommandClass=COMMAND_CLASS_NOTIFICATION, Version=3
2019-05-09 22:43:47.259 Detail, Node002, Expected reply and command class was received
2019-05-09 22:43:47.259 Detail, Node002, Message transaction complete
2019-05-09 22:43:47.260 Detail,
2019-05-09 22:43:47.260 Detail, Node002, Removing current message
2019-05-09 22:43:47.260 Detail,
2019-05-09 22:43:47.260 Info, Node002, Sending (Send) message (Callback ID=0x0f, Expected Reply=0x04) - VersionCmd_CommandClassGet (Node=2): 0x01, 0x0a, 0x00, 0x13, 0x02, 0x03, 0x86, 0x13, 0x72, 0x25, 0x0f, 0x2a
2019-05-09 22:43:47.260 Info, Node002, Encrypted Flag is 0
2019-05-09 22:43:47.269 Detail, Node002, Received: 0x01, 0x04, 0x01, 0x13, 0x01, 0xe8
2019-05-09 22:43:47.269 Detail, Node002, ZW_SEND_DATA delivered to Z-Wave stack
2019-05-09 22:43:47.285 Detail, Node002, Received: 0x01, 0x07, 0x00, 0x13, 0x0f, 0x00, 0x00, 0x02, 0xe6
2019-05-09 22:43:47.285 Detail, Node002, ZW_SEND_DATA Request with callback ID 0x0f received (expected 0x0f)
2019-05-09 22:43:47.285 Info, Node002, Request RTT 24 Average Request RTT 24
2019-05-09 22:43:47.285 Detail, Expected callbackId was received
2019-05-09 22:43:47.296 Detail, Node002, Received: 0x01, 0x0a, 0x00, 0x04, 0x00, 0x02, 0x04, 0x86, 0x14, 0x72, 0x02, 0x15
2019-05-09 22:43:47.296 Detail,
2019-05-09 22:43:47.296 Info, Node002, Response RTT 35 Average Response RTT 35
2019-05-09 22:43:47.296 Info, Node002, Received Command Class Version report from node 2: CommandClass=COMMAND_CLASS_MANUFACTURER_SPECIFIC, Version=2
2019-05-09 22:43:47.296 Detail, Node002, Expected reply and command class was received
2019-05-09 22:43:47.297 Detail, Node002, Message transaction complete
2019-05-09 22:43:47.297 Detail,
2019-05-09 22:43:47.297 Detail, Node002, Removing current message
2019-05-09 22:43:47.297 Detail,
2019-05-09 22:43:47.297 Info, Node002, Sending (Send) message (Callback ID=0x10, Expected Reply=0x04) - VersionCmd_CommandClassGet (Node=2): 0x01, 0x0a, 0x00, 0x13, 0x02, 0x03, 0x86, 0x13, 0x84, 0x25, 0x10, 0xc3
2019-05-09 22:43:47.298 Info, Node002, Encrypted Flag is 0
2019-05-09 22:43:47.306 Detail, Node002, Received: 0x01, 0x04, 0x01, 0x13, 0x01, 0xe8
2019-05-09 22:43:47.306 Detail, Node002, ZW_SEND_DATA delivered to Z-Wave stack
2019-05-09 22:43:47.322 Detail, Node002, Received: 0x01, 0x07, 0x00, 0x13, 0x10, 0x00, 0x00, 0x02, 0xf9
2019-05-09 22:43:47.322 Detail, Node002, ZW_SEND_DATA Request with callback ID 0x10 received (expected 0x10)
2019-05-09 22:43:47.323 Info, Node002, Request RTT 24 Average Request RTT 24
2019-05-09 22:43:47.323 Detail, Expected callbackId was received
2019-05-09 22:43:47.334 Detail, Node002, Received: 0x01, 0x0a, 0x00, 0x04, 0x00, 0x02, 0x04, 0x86, 0x14, 0x84, 0x02, 0xe3
2019-05-09 22:43:47.334 Detail,
2019-05-09 22:43:47.334 Info, Node002, Response RTT 35 Average Response RTT 35
2019-05-09 22:43:47.334 Info, Node002, Received Command Class Version report from node 2: CommandClass=COMMAND_CLASS_WAKE_UP, Version=2
2019-05-09 22:43:47.334 Detail, Node002, Expected reply and command class was received
2019-05-09 22:43:47.334 Detail, Node002, Message transaction complete
2019-05-09 22:43:47.334 Detail,
2019-05-09 22:43:47.335 Detail, Node002, Removing current message
2019-05-09 22:43:47.335 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.335 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.335 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.335 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.335 Detail, Node002, Query Stage Complete (Versions)
2019-05-09 22:43:47.335 Detail, Node002, AdvanceQueries queryPending=0 queryRetries=0 queryStage=Instances live=1
2019-05-09 22:43:47.335 Detail, Node002, QueryStage_Instances
2019-05-09 22:43:47.336 Info, Node002, Essential node queries are complete
2019-05-09 22:43:47.336 Detail, Node002, QueryStage_Static
2019-05-09 22:43:47.336 Info, Node002, Controlled Class
2019-05-09 22:43:47.336 Detail, Node002, Queuing (Query) SensorMultilevelCmd_SupportedGet (Node=2): 0x01, 0x09, 0x00, 0x13, 0x02, 0x02, 0x31, 0x01, 0x25, 0x11, 0xe1
2019-05-09 22:43:47.336 Detail, Node002, Queuing (Query) ZWavePlusInfoCmd_Get (Node=2): 0x01, 0x09, 0x00, 0x13, 0x02, 0x02, 0x5e, 0x01, 0x25, 0x12, 0x8d
2019-05-09 22:43:47.336 Detail, Node002, Queuing (Query) AlarmCmd_SupportedGet (Node=2): 0x01, 0x09, 0x00, 0x13, 0x02, 0x02, 0x71, 0x07, 0x25, 0x13, 0xa5
2019-05-09 22:43:47.337 Detail, Node002, Queuing (Query) ManufacturerSpecificCmd_DeviceGet (Node=2): 0x01, 0x0a, 0x00, 0x13, 0x02, 0x03, 0x72, 0x06, 0x00, 0x25, 0x14, 0xa2
2019-05-09 22:43:47.337 Detail, Node002, Queuing (Query) ManufacturerSpecificCmd_DeviceGet (Node=2): 0x01, 0x0a, 0x00, 0x13, 0x02, 0x03, 0x72, 0x06, 0x01, 0x25, 0x15, 0xa2
2019-05-09 22:43:47.337 Detail, Node002, Queuing (Query) WakeUpCmd_IntervalCapabilityGet (Node=2): 0x01, 0x09, 0x00, 0x13, 0x02, 0x02, 0x84, 0x09, 0x25, 0x16, 0x5b
2019-05-09 22:43:47.337 Detail, Node002, Queuing (Query) AssociationCmd_GroupingsGet (Node=2): 0x01, 0x09, 0x00, 0x13, 0x02, 0x02, 0x85, 0x05, 0x25, 0x17, 0x57
2019-05-09 22:43:47.337 Detail, Node002, Queuing (Query) VersionCmd_Get (Node=2): 0x01, 0x09, 0x00, 0x13, 0x02, 0x02, 0x86, 0x11, 0x25, 0x18, 0x4f
2019-05-09 22:43:47.337 Detail, Node002, Queuing (Query) Query Stage Complete (Static)
2019-05-09 22:43:47.338 Detail, Node002, Notification: EssentialNodeQueriesComplete
Notification: EssentialNodeQueriesComplete
2019-05-09 22:43:47.338 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.338 Detail,
2019-05-09 22:43:47.338 Info, Node002, Sending (Query) message (Callback ID=0x11, Expected Reply=0x04) - SensorMultilevelCmd_SupportedGet (Node=2): 0x01, 0x09, 0x00, 0x13, 0x02, 0x02, 0x31, 0x01, 0x25, 0x11, 0xe1
2019-05-09 22:43:47.338 Info, Node002, Encrypted Flag is 0
2019-05-09 22:43:47.346 Detail, Node002, Received: 0x01, 0x04, 0x01, 0x13, 0x01, 0xe8
2019-05-09 22:43:47.347 Detail, Node002, ZW_SEND_DATA delivered to Z-Wave stack
2019-05-09 22:43:47.362 Detail, Node002, Received: 0x01, 0x07, 0x00, 0x13, 0x11, 0x00, 0x00, 0x02, 0xf8
2019-05-09 22:43:47.362 Detail, Node002, ZW_SEND_DATA Request with callback ID 0x11 received (expected 0x11)
2019-05-09 22:43:47.362 Info, Node002, Request RTT 23 Average Request RTT 23
2019-05-09 22:43:47.362 Detail, Expected callbackId was received
2019-05-09 22:43:47.374 Detail, Node002, Received: 0x01, 0x0c, 0x00, 0x04, 0x00, 0x02, 0x06, 0x31, 0x02, 0x15, 0x00, 0x00, 0x04, 0xd1
2019-05-09 22:43:47.374 Detail,
2019-05-09 22:43:47.374 Info, Node002, Response RTT 35 Average Response RTT 35
2019-05-09 22:43:47.374 Info, Node002, Received SensorMultiLevel supported report from node 2: Temperature, Luminance, Relative Humidity, Ultraviolet
2019-05-09 22:43:47.374 Warning, Node002, CommandClass COMMAND_CLASS_SENSOR_MULTILEVEL HandlerMsg Returned False
2019-05-09 22:43:47.374 Detail, Node002, Expected reply and command class was received
2019-05-09 22:43:47.374 Detail, Node002, Message transaction complete
2019-05-09 22:43:47.374 Detail,
2019-05-09 22:43:47.375 Detail, Node002, Removing current message
2019-05-09 22:43:47.375 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.375 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.375 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.375 Detail, Node002, Notification: ValueAdded
Notification: ValueAdded
2019-05-09 22:43:47.375 Detail,
2019-05-09 22:43:47.375 Info, Node002, Sending (Query) message (Callback ID=0x12, Expected Reply=0x04) - ZWavePlusInfoCmd_Get (Node=2): 0x01, 0x09, 0x00, 0x13, 0x02, 0x02, 0x5e, 0x01, 0x25, 0x12, 0x8d
2019-05-09 22:43:47.376 Info, Node002, Encrypted Flag is 0
2019-05-09 22:43:47.384 Detail, Node002, Received: 0x01, 0x04, 0x01, 0x13, 0x01, 0xe8
2019-05-09 22:43:47.384 Detail, Node002, ZW_SEND_DATA delivered to Z-Wave stack
2019-05-09 22:43:47.399 Detail, Node002, Received: 0x01, 0x07, 0x00, 0x13, 0x12, 0x00, 0x00, 0x03, 0xfa
2019-05-09 22:43:47.399 Detail, Node002, ZW_SEND_DATA Request with callback ID 0x12 received (expected 0x12)
2019-05-09 22:43:47.400 Info, Node002, Request RTT 23 Average Request RTT 23
2019-05-09 22:43:47.400 Detail, Expected callbackId was received
2019-05-09 22:43:47.412 Detail, Node002, Received: 0x01, 0x0f, 0x00, 0x04, 0x00, 0x02, 0x09, 0x5e, 0x02, 0x01, 0x05, 0x00, 0x0c, 0x07, 0x0c, 0x07, 0xa7
2019-05-09 22:43:47.412 Detail,
2019-05-09 22:43:47.412 Info, Node002, Response RTT 36 Average Response RTT 35
2019-05-09 22:43:47.412 Detail, Node002, Refreshed Value: old value=1, new value=1, type=byte
2019-05-09 22:43:47.412 Detail, Node002, Changes to this value are not verified
2019-05-09 22:43:47.412 Detail, Node002, Refreshed Value: old value=3079, new value=3079, type=short
2019-05-09 22:43:47.412 Detail, Node002, Changes to this value are not verified
2019-05-09 22:43:47.412 Detail, Node002, Refreshed Value: old value=3079, new value=3079, type=short
2019-05-09 22:43:47.413 Detail, Node002, Changes to this value are not verified
2019-05-09 22:43:47.413 Detail, Node002, Expected reply and command class was received
2019-05-09 22:43:47.413 Detail, Node002, Message transaction complete
2019-05-09 22:43:47.413 Detail,
2019-05-09 22:43:47.413 Detail, Node002, Removing current message
2019-05-09 22:43:47.413 Detail, Node002, Notification: ValueChanged
Notification: ValueChanged
2019-05-09 22:43:47.413 Detail, Node002, Notification: ValueChanged
Notification: ValueChanged
2019-05-09 22:43:47.413 Detail, Node002, Notification: ValueChanged
Notification: ValueChanged
2019-05-09 22:43:47.413 Detail,
2019-05-09 22:43:47.413 Info, Node002, Sending (Query) message (Callback ID=0x13, Expected Reply=0x04) - AlarmCmd_SupportedGet (Node=2): 0x01, 0x09, 0x00, 0x13, 0x02, 0x02, 0x71, 0x07, 0x25, 0x13, 0xa5
2019-05-09 22:43:47.413 Info, Node002, Encrypted Flag is 0
2019-05-09 22:43:47.422 Detail, Node002, Received: 0x01, 0x04, 0x01, 0x13, 0x01, 0xe8
2019-05-09 22:43:47.422 Detail, Node002, ZW_SEND_DATA delivered to Z-Wave stack
2019-05-09 22:43:47.437 Detail, Node002, Received: 0x01, 0x07, 0x00, 0x13, 0x13, 0x00, 0x00, 0x02, 0xfa
2019-05-09 22:43:47.437 Detail, Node002, ZW_SEND_DATA Request with callback ID 0x13 received (expected 0x13)
2019-05-09 22:43:47.437 Info, Node002, Request RTT 23 Average Request RTT 23
2019-05-09 22:43:47.438 Detail, Expected callbackId was received
2019-05-09 22:43:47.449 Detail, Node002, Received: 0x01, 0x0a, 0x00, 0x04, 0x00, 0x02, 0x04, 0x71, 0x08, 0x01, 0x80, 0x0f
2019-05-09 22:43:47.449 Detail,
2019-05-09 22:43:47.449 Info, Node002, Response RTT 35 Average Response RTT 35
2019-05-09 22:43:47.449 Info, Node002, Received supported alarm types
2019-05-09 22:43:47.449 Info, Node002, AlarmType: Home Security
2019-05-09 22:43:47.449 Detail, Node002, Queuing (Send) AlarmCmd_Event_Supported_Get (Node=2): 0x01, 0x0a, 0x00, 0x13, 0x02, 0x03, 0x71, 0x01, 0x07, 0x25, 0x19, 0xac
2019-05-09 22:43:47.450 Detail, Node002, Expected reply and command class was received
2019-05-09 22:43:47.450 Detail, Node002, Message transaction complete
2019-05-09 22:43:47.450 Detail,
2019-05-09 22:43:47.450 Detail, Node002, Removing current message
2019-05-09 22:43:47.450 Detail,
2019-05-09 22:43:47.450 Info, Node002, Sending (Send) message (Callback ID=0x19, Expected Reply=0x04) - AlarmCmd_Event_Supported_Get (Node=2): 0x01, 0x0a, 0x00, 0x13, 0x02, 0x03, 0x71, 0x01, 0x07, 0x25, 0x19, 0xac
2019-05-09 22:43:47.450 Info, Node002, Encrypted Flag is 0
2019-05-09 22:43:47.459 Detail, Node002, Received: 0x01, 0x04, 0x01, 0x13, 0x01, 0xe8