forked from OpenZWave/python-openzwave
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnode.html
More file actions
1119 lines (1049 loc) · 49.4 KB
/
node.html
File metadata and controls
1119 lines (1049 loc) · 49.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Node documentation — python-openzwave 0.3.0b5 documentation</title>
<link rel="stylesheet" href="_static/default.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: './',
VERSION: '0.3.0b5',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
};
</script>
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<link rel="top" title="python-openzwave 0.3.0b5 documentation" href="index.html" />
<link rel="up" title="API documentation" href="openzwave.html" />
<link rel="next" title="Command documentation" href="command.html" />
<link rel="prev" title="Option documentation" href="option.html" />
</head>
<body>
<div class="related">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="genindex.html" title="General Index"
accesskey="I">index</a></li>
<li class="right" >
<a href="py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="right" >
<a href="command.html" title="Command documentation"
accesskey="N">next</a> |</li>
<li class="right" >
<a href="option.html" title="Option documentation"
accesskey="P">previous</a> |</li>
<li><a href="index.html">python-openzwave 0.3.0b5 documentation</a> »</li>
<li><a href="openzwave.html" accesskey="U">API documentation</a> »</li>
</ul>
</div>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body">
<div class="section" id="node-documentation">
<h1>Node documentation<a class="headerlink" href="#node-documentation" title="Permalink to this headline">¶</a></h1>
<p>The node.</p>
<div class="toctree-wrapper compound">
<ul class="simple">
</ul>
</div>
<span class="target" id="module-openzwave.node"></span><span class="target" id="module-openzwave.node"></span><dl class="docutils">
<dt>This file is part of <strong>python-openzwave</strong> project <a class="reference external" href="https://github.com/OpenZWave/python-openzwave">https://github.com/OpenZWave/python-openzwave</a>.</dt>
<dd><table class="first last docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">platform:</th><td class="field-body">Unix, Windows, MacOS X</td>
</tr>
<tr class="field-even field"><th class="field-name">sinopsis:</th><td class="field-body">openzwave API</td>
</tr>
</tbody>
</table>
</dd>
</dl>
<p>License : GPL(v3)</p>
<p><strong>python-openzwave</strong> is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.</p>
<p><strong>python-openzwave</strong> is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with python-openzwave. If not, see <a class="reference external" href="http://www.gnu.org/licenses">http://www.gnu.org/licenses</a>.</p>
<dl class="class">
<dt id="openzwave.node.ZWaveNode">
<em class="property">class </em><tt class="descclassname">openzwave.node.</tt><tt class="descname">ZWaveNode</tt><big>(</big><em>node_id</em>, <em>network</em><big>)</big><a class="headerlink" href="#openzwave.node.ZWaveNode" title="Permalink to this definition">¶</a></dt>
<dd><p>Represents a single Node within the Z-Wave Network.</p>
<dl class="method">
<dt id="openzwave.node.ZWaveNode.add_value">
<tt class="descname">add_value</tt><big>(</big><em>value_id</em><big>)</big><a class="headerlink" href="#openzwave.node.ZWaveNode.add_value" title="Permalink to this definition">¶</a></dt>
<dd><p>Add a value to the node</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple">
<li><strong>value_id</strong> (<em>int</em>) – The id of the value to add</li>
<li><strong>command_class</strong> (<em>str</em>) – The command_class of the value</li>
</ul>
</td>
</tr>
<tr class="field-even field"><th class="field-name">Return type:</th><td class="field-body"><p class="first last">bool</p>
</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="method">
<dt id="openzwave.node.ZWaveNode.assign_return_route">
<tt class="descname">assign_return_route</tt><big>(</big><big>)</big><a class="headerlink" href="#openzwave.node.ZWaveNode.assign_return_route" title="Permalink to this definition">¶</a></dt>
<dd><p>Ask the to update its update its Return Route to the Controller</p>
<p>This command will ask a Node to update its Return Route to the Controller</p>
<p>Results of the AssignReturnRoute Command will be send as a Notification with the Notification type as
Notification::Type_ControllerCommand</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Returns:</th><td class="field-body">True if the request was sent successfully.</td>
</tr>
<tr class="field-even field"><th class="field-name">Return type:</th><td class="field-body">bool</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="attribute">
<dt id="openzwave.node.ZWaveNode.basic">
<tt class="descname">basic</tt><a class="headerlink" href="#openzwave.node.ZWaveNode.basic" title="Permalink to this definition">¶</a></dt>
<dd><p>The basic type of the node.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Return type:</th><td class="field-body">int</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="attribute">
<dt id="openzwave.node.ZWaveNode.capabilities">
<tt class="descname">capabilities</tt><a class="headerlink" href="#openzwave.node.ZWaveNode.capabilities" title="Permalink to this definition">¶</a></dt>
<dd><p>The capabilities of the node.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Return type:</th><td class="field-body">set()</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="method">
<dt id="openzwave.node.ZWaveNode.change_value">
<tt class="descname">change_value</tt><big>(</big><em>value_id</em><big>)</big><a class="headerlink" href="#openzwave.node.ZWaveNode.change_value" title="Permalink to this definition">¶</a></dt>
<dd><p>Change a value of the node.
Not implemented</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>value_id</strong> (<em>int</em>) – The id of the value to change</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="attribute">
<dt id="openzwave.node.ZWaveNode.command_classes">
<tt class="descname">command_classes</tt><a class="headerlink" href="#openzwave.node.ZWaveNode.command_classes" title="Permalink to this definition">¶</a></dt>
<dd><p>The commandClasses of the node.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Return type:</th><td class="field-body">set()</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="attribute">
<dt id="openzwave.node.ZWaveNode.command_classes_as_string">
<tt class="descname">command_classes_as_string</tt><a class="headerlink" href="#openzwave.node.ZWaveNode.command_classes_as_string" title="Permalink to this definition">¶</a></dt>
<dd><p>Return the command classes of the node as string.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Return type:</th><td class="field-body">set()</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="method">
<dt id="openzwave.node.ZWaveNode.create_button">
<tt class="descname">create_button</tt><big>(</big><em>buttonid</em><big>)</big><a class="headerlink" href="#openzwave.node.ZWaveNode.create_button" title="Permalink to this definition">¶</a></dt>
<dd><p>Create a handheld button id.</p>
<p>Only intended for Bridge Firmware Controllers.</p>
<p>Results of the CreateButton Command will be send as a Notification with the Notification type as
Notification::Type_ControllerCommand</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>buttonid</strong> (<em>int</em>) – the ID of the Button to query.</td>
</tr>
<tr class="field-even field"><th class="field-name">Returns:</th><td class="field-body">True if the request was sent successfully.</td>
</tr>
<tr class="field-odd field"><th class="field-name">Return type:</th><td class="field-body">bool</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="method">
<dt id="openzwave.node.ZWaveNode.delete_button">
<tt class="descname">delete_button</tt><big>(</big><em>buttonid</em><big>)</big><a class="headerlink" href="#openzwave.node.ZWaveNode.delete_button" title="Permalink to this definition">¶</a></dt>
<dd><p>Delete a handheld button id.</p>
<p>Only intended for Bridge Firmware Controllers.</p>
<p>Results of the CreateButton Command will be send as a Notification with the Notification type as
Notification::Type_ControllerCommand</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>buttonid</strong> (<em>int</em>) – the ID of the Button to query.</td>
</tr>
<tr class="field-even field"><th class="field-name">Returns:</th><td class="field-body">True if the request was sent successfully.</td>
</tr>
<tr class="field-odd field"><th class="field-name">Return type:</th><td class="field-body">bool</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="attribute">
<dt id="openzwave.node.ZWaveNode.generic">
<tt class="descname">generic</tt><a class="headerlink" href="#openzwave.node.ZWaveNode.generic" title="Permalink to this definition">¶</a></dt>
<dd><p>The generic type of the node.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Return type:</th><td class="field-body">int</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="method">
<dt id="openzwave.node.ZWaveNode.get_command_class_as_string">
<tt class="descname">get_command_class_as_string</tt><big>(</big><em>class_id</em><big>)</big><a class="headerlink" href="#openzwave.node.ZWaveNode.get_command_class_as_string" title="Permalink to this definition">¶</a></dt>
<dd><p>Return the command class representation as string.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>class_id</strong> (<em>hexadecimal code</em>) – the COMMAND_CLASS to get string representation</td>
</tr>
<tr class="field-even field"><th class="field-name">Return type:</th><td class="field-body">str</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="method">
<dt id="openzwave.node.ZWaveNode.get_command_class_genres">
<tt class="descname">get_command_class_genres</tt><big>(</big><big>)</big><a class="headerlink" href="#openzwave.node.ZWaveNode.get_command_class_genres" title="Permalink to this definition">¶</a></dt>
<dd><p>Return the list of genres of command classes</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Return type:</th><td class="field-body">set()</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="method">
<dt id="openzwave.node.ZWaveNode.get_values">
<tt class="descname">get_values</tt><big>(</big><em>class_id='All'</em>, <em>genre='All'</em>, <em>type='All'</em>, <em>readonly='All'</em>, <em>writeonly='All'</em><big>)</big><a class="headerlink" href="#openzwave.node.ZWaveNode.get_values" title="Permalink to this definition">¶</a></dt>
<dd><p>Retrieve the set of values. You can optionnaly filter for a command class,
a genre and/or a type. You can also filter readonly and writeonly params.</p>
<p>This method always filter the values.
If you wan’t to get all the node’s values, use self.values instead.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple">
<li><strong>class_id</strong> (<em>hexadecimal code or string</em>) – the COMMAND_CLASS to get values</li>
<li><strong>genre</strong> (<em>‘All’ or PyGenres</em>) – the genre of value</li>
<li><strong>type</strong> (<em>‘All’ or PyValueTypes</em>) – the type of value</li>
<li><strong>readonly</strong> (<em>‘All’ or True or False</em>) – Is this value readonly</li>
<li><strong>writeonly</strong> (<em>‘All’ or True or False</em>) – Is this value writeonly</li>
</ul>
</td>
</tr>
<tr class="field-even field"><th class="field-name">Return type:</th><td class="field-body"><p class="first last">set() of Values</p>
</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="method">
<dt id="openzwave.node.ZWaveNode.get_values_by_command_classes">
<tt class="descname">get_values_by_command_classes</tt><big>(</big><em>genre='All'</em>, <em>type='All'</em>, <em>readonly='All'</em>, <em>writeonly='All'</em><big>)</big><a class="headerlink" href="#openzwave.node.ZWaveNode.get_values_by_command_classes" title="Permalink to this definition">¶</a></dt>
<dd><p>Retrieve values in a dict() of dicts(). The dict is indexed on the COMMAND_CLASS.
This allows to browse values grouped by the COMMAND_CLASS.You can optionnaly filter for a command class,
a genre and/or a type. You can also filter readonly and writeonly params.</p>
<p>This method always filter the values.
If you wan’t to get all the node’s values, use the property self.values instead.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple">
<li><strong>genre</strong> (<em>‘All’ or PyGenres</em>) – the genre of value</li>
<li><strong>type</strong> (<em>‘All’ or PyValueTypes</em>) – the type of value</li>
<li><strong>readonly</strong> (<em>‘All’ or True or False</em>) – Is this value readonly</li>
<li><strong>writeonly</strong> (<em>‘All’ or True or False</em>) – Is this value writeonly</li>
</ul>
</td>
</tr>
<tr class="field-even field"><th class="field-name">Return type:</th><td class="field-body"><p class="first last">dict(command_class : dict(valueids))</p>
</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="method">
<dt id="openzwave.node.ZWaveNode.get_values_for_command_class">
<tt class="descname">get_values_for_command_class</tt><big>(</big><em>class_id</em><big>)</big><a class="headerlink" href="#openzwave.node.ZWaveNode.get_values_for_command_class" title="Permalink to this definition">¶</a></dt>
<dd><p>Retrieve the set of values for a command class.
Deprecated
For backward compatibility only.
Use get_values instead</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>class_id</strong> (<em>hexadecimal code or string</em>) – the COMMAND_CLASS to get values</td>
</tr>
<tr class="field-even field"><th class="field-name">Return type:</th><td class="field-body">set() of classId</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="attribute">
<dt id="openzwave.node.ZWaveNode.groups">
<tt class="descname">groups</tt><a class="headerlink" href="#openzwave.node.ZWaveNode.groups" title="Permalink to this definition">¶</a></dt>
<dd><p>Get the association groups reported by this node</p>
<p>In Z-Wave, groups are numbered starting from one. For example, if a call to
GetNumGroups returns 4, the _groupIdx value to use in calls to GetAssociations
AddAssociation and RemoveAssociation will be a number between 1 and 4.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Return type:</th><td class="field-body">dict()</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="method">
<dt id="openzwave.node.ZWaveNode.groups_to_dict">
<tt class="descname">groups_to_dict</tt><big>(</big><em>extras=['all']</em><big>)</big><a class="headerlink" href="#openzwave.node.ZWaveNode.groups_to_dict" title="Permalink to this definition">¶</a></dt>
<dd><p>Return a dict representation of the groups.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>extras</strong> (<em>[]</em>) – The extra inforamtions to add</td>
</tr>
<tr class="field-even field"><th class="field-name">Returns:</th><td class="field-body">A dict</td>
</tr>
<tr class="field-odd field"><th class="field-name">Return type:</th><td class="field-body">dict()</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="method">
<dt id="openzwave.node.ZWaveNode.has_command_class">
<tt class="descname">has_command_class</tt><big>(</big><em>class_id</em><big>)</big><a class="headerlink" href="#openzwave.node.ZWaveNode.has_command_class" title="Permalink to this definition">¶</a></dt>
<dd><p>Check that this node use this commandClass.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>classId</strong> (<em>hexadecimal code</em>) – the COMMAND_CLASS to check</td>
</tr>
<tr class="field-even field"><th class="field-name">Return type:</th><td class="field-body">bool</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="method">
<dt id="openzwave.node.ZWaveNode.heal">
<tt class="descname">heal</tt><big>(</big><em>upNodeRoute=False</em><big>)</big><a class="headerlink" href="#openzwave.node.ZWaveNode.heal" title="Permalink to this definition">¶</a></dt>
<dd><p>Heal network node by requesting the node rediscover their neighbors.
Sends a ControllerCommand_RequestNodeNeighborUpdate to the node.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>upNodeRoute</strong> (<em>bool</em>) – Optional Whether to perform return routes initialization. (default = false).</td>
</tr>
<tr class="field-even field"><th class="field-name">Returns:</th><td class="field-body">True is the ControllerCommand is sent. False otherwise</td>
</tr>
<tr class="field-odd field"><th class="field-name">Return type:</th><td class="field-body">bool</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="attribute">
<dt id="openzwave.node.ZWaveNode.is_awake">
<tt class="descname">is_awake</tt><a class="headerlink" href="#openzwave.node.ZWaveNode.is_awake" title="Permalink to this definition">¶</a></dt>
<dd><p>Is this node a awake.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Return type:</th><td class="field-body">bool</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="attribute">
<dt id="openzwave.node.ZWaveNode.is_beaming_device">
<tt class="descname">is_beaming_device</tt><a class="headerlink" href="#openzwave.node.ZWaveNode.is_beaming_device" title="Permalink to this definition">¶</a></dt>
<dd><p>Is this node a beaming device.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Return type:</th><td class="field-body">bool</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="attribute">
<dt id="openzwave.node.ZWaveNode.is_failed">
<tt class="descname">is_failed</tt><a class="headerlink" href="#openzwave.node.ZWaveNode.is_failed" title="Permalink to this definition">¶</a></dt>
<dd><p>Is this node is presume failed.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Return type:</th><td class="field-body">bool</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="attribute">
<dt id="openzwave.node.ZWaveNode.is_frequent_listening_device">
<tt class="descname">is_frequent_listening_device</tt><a class="headerlink" href="#openzwave.node.ZWaveNode.is_frequent_listening_device" title="Permalink to this definition">¶</a></dt>
<dd><p>Is this node a frequent listening device.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Return type:</th><td class="field-body">bool</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="attribute">
<dt id="openzwave.node.ZWaveNode.is_info_received">
<tt class="descname">is_info_received</tt><a class="headerlink" href="#openzwave.node.ZWaveNode.is_info_received" title="Permalink to this definition">¶</a></dt>
<dd><p>Get whether the node information has been received. Returns True if the node information has been received yet</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Return type:</th><td class="field-body">bool</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="attribute">
<dt id="openzwave.node.ZWaveNode.is_listening_device">
<tt class="descname">is_listening_device</tt><a class="headerlink" href="#openzwave.node.ZWaveNode.is_listening_device" title="Permalink to this definition">¶</a></dt>
<dd><p>Is this node a listening device.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Return type:</th><td class="field-body">bool</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="attribute">
<dt id="openzwave.node.ZWaveNode.is_locked">
<tt class="descname">is_locked</tt><a class="headerlink" href="#openzwave.node.ZWaveNode.is_locked" title="Permalink to this definition">¶</a></dt>
<dd><p>Is this node locked.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Return type:</th><td class="field-body">bool</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="attribute">
<dt id="openzwave.node.ZWaveNode.is_ready">
<tt class="descname">is_ready</tt><a class="headerlink" href="#openzwave.node.ZWaveNode.is_ready" title="Permalink to this definition">¶</a></dt>
<dd><p>Get whether the node is ready to operate (QueryStage Completed).</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Return type:</th><td class="field-body">bool</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="attribute">
<dt id="openzwave.node.ZWaveNode.is_routing_device">
<tt class="descname">is_routing_device</tt><a class="headerlink" href="#openzwave.node.ZWaveNode.is_routing_device" title="Permalink to this definition">¶</a></dt>
<dd><p>Is this node a routing device.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Return type:</th><td class="field-body">bool</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="attribute">
<dt id="openzwave.node.ZWaveNode.is_security_device">
<tt class="descname">is_security_device</tt><a class="headerlink" href="#openzwave.node.ZWaveNode.is_security_device" title="Permalink to this definition">¶</a></dt>
<dd><p>Is this node a security device.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Return type:</th><td class="field-body">bool</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="attribute">
<dt id="openzwave.node.ZWaveNode.is_sleeping">
<tt class="descname">is_sleeping</tt><a class="headerlink" href="#openzwave.node.ZWaveNode.is_sleeping" title="Permalink to this definition">¶</a></dt>
<dd><p>Is this node sleeping.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Return type:</th><td class="field-body">bool</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="attribute">
<dt id="openzwave.node.ZWaveNode.location">
<tt class="descname">location</tt><a class="headerlink" href="#openzwave.node.ZWaveNode.location" title="Permalink to this definition">¶</a></dt>
<dd><p>The location of the node.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Return type:</th><td class="field-body">str</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="attribute">
<dt id="openzwave.node.ZWaveNode.manufacturer_id">
<tt class="descname">manufacturer_id</tt><a class="headerlink" href="#openzwave.node.ZWaveNode.manufacturer_id" title="Permalink to this definition">¶</a></dt>
<dd><p>The manufacturer id of the node.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Return type:</th><td class="field-body">str</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="attribute">
<dt id="openzwave.node.ZWaveNode.manufacturer_name">
<tt class="descname">manufacturer_name</tt><a class="headerlink" href="#openzwave.node.ZWaveNode.manufacturer_name" title="Permalink to this definition">¶</a></dt>
<dd><p>The manufacturer name of the node.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Return type:</th><td class="field-body">str</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="attribute">
<dt id="openzwave.node.ZWaveNode.max_baud_rate">
<tt class="descname">max_baud_rate</tt><a class="headerlink" href="#openzwave.node.ZWaveNode.max_baud_rate" title="Permalink to this definition">¶</a></dt>
<dd><p>Get the maximum baud rate of a node</p>
</dd></dl>
<dl class="attribute">
<dt id="openzwave.node.ZWaveNode.name">
<tt class="descname">name</tt><a class="headerlink" href="#openzwave.node.ZWaveNode.name" title="Permalink to this definition">¶</a></dt>
<dd><p>The name of the node.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Return type:</th><td class="field-body">str</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="method">
<dt id="openzwave.node.ZWaveNode.neighbor_update">
<tt class="descname">neighbor_update</tt><big>(</big><big>)</big><a class="headerlink" href="#openzwave.node.ZWaveNode.neighbor_update" title="Permalink to this definition">¶</a></dt>
<dd><p>Ask a Node to update its Neighbor Tables</p>
<p>This command will ask a Node to update its Neighbor Tables.</p>
<p>Results of the RequestNodeNeighborUpdate Command will be send as a Notification with the Notification type as
Notification::Type_ControllerCommand</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Returns:</th><td class="field-body">True if the request was sent successfully.</td>
</tr>
<tr class="field-even field"><th class="field-name">Return type:</th><td class="field-body">bool</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="attribute">
<dt id="openzwave.node.ZWaveNode.neighbors">
<tt class="descname">neighbors</tt><a class="headerlink" href="#openzwave.node.ZWaveNode.neighbors" title="Permalink to this definition">¶</a></dt>
<dd><p>The neighbors of the node.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Return type:</th><td class="field-body">set()</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="method">
<dt id="openzwave.node.ZWaveNode.network_update">
<tt class="descname">network_update</tt><big>(</big><big>)</big><a class="headerlink" href="#openzwave.node.ZWaveNode.network_update" title="Permalink to this definition">¶</a></dt>
<dd><p>Update the controller with network information from the SUC/SIS.</p>
<p>Results of the RequestNetworkUpdate Command will be send as a Notification with the Notification type as
Notification::Type_ControllerCommand</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Returns:</th><td class="field-body">True if the request was sent successfully.</td>
</tr>
<tr class="field-even field"><th class="field-name">Return type:</th><td class="field-body">bool</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="attribute">
<dt id="openzwave.node.ZWaveNode.node_id">
<tt class="descname">node_id</tt><a class="headerlink" href="#openzwave.node.ZWaveNode.node_id" title="Permalink to this definition">¶</a></dt>
<dd><p>The id of the node.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Return type:</th><td class="field-body">int</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="attribute">
<dt id="openzwave.node.ZWaveNode.num_groups">
<tt class="descname">num_groups</tt><a class="headerlink" href="#openzwave.node.ZWaveNode.num_groups" title="Permalink to this definition">¶</a></dt>
<dd><p>Gets the number of association groups reported by this node.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Return type:</th><td class="field-body">int</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="attribute">
<dt id="openzwave.node.ZWaveNode.product_id">
<tt class="descname">product_id</tt><a class="headerlink" href="#openzwave.node.ZWaveNode.product_id" title="Permalink to this definition">¶</a></dt>
<dd><p>The product Id of the node.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Return type:</th><td class="field-body">str</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="attribute">
<dt id="openzwave.node.ZWaveNode.product_name">
<tt class="descname">product_name</tt><a class="headerlink" href="#openzwave.node.ZWaveNode.product_name" title="Permalink to this definition">¶</a></dt>
<dd><p>The product name of the node.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Return type:</th><td class="field-body">str</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="attribute">
<dt id="openzwave.node.ZWaveNode.product_type">
<tt class="descname">product_type</tt><a class="headerlink" href="#openzwave.node.ZWaveNode.product_type" title="Permalink to this definition">¶</a></dt>
<dd><p>The product type of the node.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Return type:</th><td class="field-body">str</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="attribute">
<dt id="openzwave.node.ZWaveNode.query_stage">
<tt class="descname">query_stage</tt><a class="headerlink" href="#openzwave.node.ZWaveNode.query_stage" title="Permalink to this definition">¶</a></dt>
<dd><p>Is this node a awake.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Return type:</th><td class="field-body">string</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="method">
<dt id="openzwave.node.ZWaveNode.refresh_info">
<tt class="descname">refresh_info</tt><big>(</big><big>)</big><a class="headerlink" href="#openzwave.node.ZWaveNode.refresh_info" title="Permalink to this definition">¶</a></dt>
<dd><p>Trigger the fetching of fixed data about a node.</p>
<p>Causes the nodes data to be obtained from the Z-Wave network in the same way
as if it had just been added. This method would normally be called
automatically by OpenZWave, but if you know that a node has been changed,
calling this method will force a refresh of the data held by the library. This
can be especially useful for devices that were asleep when the application was
first run.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Return type:</th><td class="field-body">bool</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="method">
<dt id="openzwave.node.ZWaveNode.refresh_value">
<tt class="descname">refresh_value</tt><big>(</big><em>value_id</em><big>)</big><a class="headerlink" href="#openzwave.node.ZWaveNode.refresh_value" title="Permalink to this definition">¶</a></dt>
<dd><p>Refresh a value of the node.
Not implemented</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>value_id</strong> (<em>int</em>) – The id of the value to change</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="method">
<dt id="openzwave.node.ZWaveNode.remove_value">
<tt class="descname">remove_value</tt><big>(</big><em>value_id</em><big>)</big><a class="headerlink" href="#openzwave.node.ZWaveNode.remove_value" title="Permalink to this definition">¶</a></dt>
<dd><p>Change a value of the node. Todo</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>value_id</strong> (<em>int</em>) – The id of the value to change</td>
</tr>
<tr class="field-even field"><th class="field-name">Returns:</th><td class="field-body">The result of the operation</td>
</tr>
<tr class="field-odd field"><th class="field-name">Return type:</th><td class="field-body">bool</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="method">
<dt id="openzwave.node.ZWaveNode.request_all_config_params">
<tt class="descname">request_all_config_params</tt><big>(</big><big>)</big><a class="headerlink" href="#openzwave.node.ZWaveNode.request_all_config_params" title="Permalink to this definition">¶</a></dt>
<dd><p>Request the values of all known configurable parameters from a device.</p>
</dd></dl>
<dl class="method">
<dt id="openzwave.node.ZWaveNode.request_config_param">
<tt class="descname">request_config_param</tt><big>(</big><em>param</em><big>)</big><a class="headerlink" href="#openzwave.node.ZWaveNode.request_config_param" title="Permalink to this definition">¶</a></dt>
<dd><p>Request the value of a configurable parameter from a device.</p>
<p>Some devices have various parameters that can be configured to control the
device behaviour. These are not reported by the device over the Z-Wave network
but can usually be found in the devices user manual. This method requests
the value of a parameter from the device, and then returns immediately,
without waiting for a response. If the parameter index is valid for this
device, and the device is awake, the value will eventually be reported via a
ValueChanged notification callback. The ValueID reported in the callback will
have an index set the same as _param and a command class set to the same value
as returned by a call to Configuration::StaticGetCommandClassId.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>param</strong> – The param of the node.</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="method">
<dt id="openzwave.node.ZWaveNode.request_state">
<tt class="descname">request_state</tt><big>(</big><big>)</big><a class="headerlink" href="#openzwave.node.ZWaveNode.request_state" title="Permalink to this definition">¶</a></dt>
<dd><p>Trigger the fetching of just the dynamic value data for a node.
Causes the node’s values to be requested from the Z-Wave network. This is the
same as the query state starting from the dynamic state.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Return type:</th><td class="field-body">bool</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="attribute">
<dt id="openzwave.node.ZWaveNode.security">
<tt class="descname">security</tt><a class="headerlink" href="#openzwave.node.ZWaveNode.security" title="Permalink to this definition">¶</a></dt>
<dd><p>The security type of the node.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Returns:</th><td class="field-body">The security type of the node</td>
</tr>
<tr class="field-even field"><th class="field-name">Return type:</th><td class="field-body">int</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="method">
<dt id="openzwave.node.ZWaveNode.send_information">
<tt class="descname">send_information</tt><big>(</big><big>)</big><a class="headerlink" href="#openzwave.node.ZWaveNode.send_information" title="Permalink to this definition">¶</a></dt>
<dd><p>Send a NIF frame from the Controller to a Node.
This command send a NIF frame from the Controller to a Node</p>
<p>Results of the SendNodeInformation Command will be send as a Notification with the Notification type as
Notification::Type_ControllerCommand</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Returns:</th><td class="field-body">True if the request was sent successfully.</td>
</tr>
<tr class="field-even field"><th class="field-name">Return type:</th><td class="field-body">bool</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="method">
<dt id="openzwave.node.ZWaveNode.set_config_param">
<tt class="descname">set_config_param</tt><big>(</big><em>param</em>, <em>value</em>, <em>size=2</em><big>)</big><a class="headerlink" href="#openzwave.node.ZWaveNode.set_config_param" title="Permalink to this definition">¶</a></dt>
<dd><p>Set the value of a configurable parameter in a device.</p>
<p>Some devices have various parameters that can be configured to control the
device behaviour. These are not reported by the device over the Z-Wave network
but can usually be found in the devices user manual. This method returns
immediately, without waiting for confirmation from the device that the change
has been made.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple">
<li><strong>param</strong> – The param of the node.</li>
<li><strong>value</strong> – The value of the param.</li>
<li><strong>size</strong> (<em>int</em>) – Is an optional number of bytes to be sent for the parameter value. Defaults to 2.</li>
</ul>
</td>
</tr>
<tr class="field-even field"><th class="field-name">Returns:</th><td class="field-body"><p class="first"></p>
</td>
</tr>
<tr class="field-odd field"><th class="field-name">Return type:</th><td class="field-body"><p class="first last">bool</p>
</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="method">
<dt id="openzwave.node.ZWaveNode.set_field">
<tt class="descname">set_field</tt><big>(</big><em>field</em>, <em>value</em><big>)</big><a class="headerlink" href="#openzwave.node.ZWaveNode.set_field" title="Permalink to this definition">¶</a></dt>
<dd><p>A helper to set a writable field : name, location, product_name, ...</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple">
<li><strong>field</strong> (<em>str</em>) – The field to set : name, location, product_name, manufacturer_name</li>
<li><strong>value</strong> (<em>str</em>) – The value to set</li>
</ul>
</td>
</tr>
<tr class="field-even field"><th class="field-name">Return type:</th><td class="field-body"><p class="first last">bool</p>
</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="attribute">
<dt id="openzwave.node.ZWaveNode.specific">
<tt class="descname">specific</tt><a class="headerlink" href="#openzwave.node.ZWaveNode.specific" title="Permalink to this definition">¶</a></dt>
<dd><p>The specific type of the node.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Returns:</th><td class="field-body">The specific type of the node</td>
</tr>
<tr class="field-even field"><th class="field-name">Return type:</th><td class="field-body">int</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="method">
<dt id="openzwave.node.ZWaveNode.test">
<tt class="descname">test</tt><big>(</big><em>count=1</em><big>)</big><a class="headerlink" href="#openzwave.node.ZWaveNode.test" title="Permalink to this definition">¶</a></dt>
<dd><p>Send a number of test messages to node and record results.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>count</strong> (<em>int</em>) – The number of test messages to send.</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="method">
<dt id="openzwave.node.ZWaveNode.to_dict">
<tt class="descname">to_dict</tt><big>(</big><em>extras=['all']</em><big>)</big><a class="headerlink" href="#openzwave.node.ZWaveNode.to_dict" title="Permalink to this definition">¶</a></dt>