isy-nodejs 0.5.0-beta.54 → 0.5.0-beta.56

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (63) hide show
  1. package/lib/Devices/ISYDevice.d.ts +12 -12
  2. package/lib/Devices/Insteon/InsteonCOSensorDevice.d.ts +5 -5
  3. package/lib/Devices/Insteon/InsteonDevice.d.ts +136 -10
  4. package/lib/Devices/Insteon/InsteonDevice.js +10 -11
  5. package/lib/Devices/Insteon/InsteonDeviceFactory.d.ts +2 -2
  6. package/lib/Devices/Insteon/InsteonDeviceFactory.js +10 -10
  7. package/lib/Devices/Insteon/InsteonDimmerSwitchDevice.d.ts +67 -3
  8. package/lib/Devices/Insteon/InsteonDoorWindowSensorDevice.d.ts +5 -5
  9. package/lib/Devices/Insteon/InsteonFanDevice.d.ts +5 -5
  10. package/lib/Devices/Insteon/InsteonLeakSensorDevice.d.ts +5 -5
  11. package/lib/Devices/Insteon/InsteonLockDevice.d.ts +5 -5
  12. package/lib/Devices/Insteon/InsteonRelayDevice.d.ts +5 -5
  13. package/lib/Devices/Insteon/InsteonRelaySwitchDevice.d.ts +67 -3
  14. package/lib/Devices/Insteon/InsteonSmokeSensorDevice.d.ts +5 -5
  15. package/lib/ISY.d.ts +1 -0
  16. package/lib/ISY.js +16 -1
  17. package/package.json +9 -1
  18. package/.babelrc +0 -12
  19. package/.travis.yml +0 -8
  20. package/ISYNodesDump.json +0 -1368
  21. package/isySampleOutput/config.json +0 -1825
  22. package/scratch.js +0 -95
  23. package/src/Categories.ts +0 -19
  24. package/src/Devices/DeviceFactory.ts +0 -20
  25. package/src/Devices/Elk/ElkAlarmPanelDevice.ts +0 -190
  26. package/src/Devices/Elk/ElkAlarmSensorDevice.ts +0 -104
  27. package/src/Devices/ISYDevice.ts +0 -281
  28. package/src/Devices/Insteon/InsteonBallastDimmerDevice.ts +0 -6
  29. package/src/Devices/Insteon/InsteonBaseDevice.ts +0 -43
  30. package/src/Devices/Insteon/InsteonCOSensorDevice.ts +0 -12
  31. package/src/Devices/Insteon/InsteonDeviceFactory.ts +0 -823
  32. package/src/Devices/Insteon/InsteonDimmableDevice.ts +0 -16
  33. package/src/Devices/Insteon/InsteonDimmerOutletDevice.ts +0 -7
  34. package/src/Devices/Insteon/InsteonDimmerSwitchDevice.ts +0 -8
  35. package/src/Devices/Insteon/InsteonDoorWindowSensorDevice.ts +0 -12
  36. package/src/Devices/Insteon/InsteonFanDevice.ts +0 -73
  37. package/src/Devices/Insteon/InsteonKeypadDevice.ts +0 -10
  38. package/src/Devices/Insteon/InsteonKeypadDimmerDevice.ts +0 -10
  39. package/src/Devices/Insteon/InsteonKeypadRelayDevice.ts +0 -7
  40. package/src/Devices/Insteon/InsteonLeakSensorDevice.ts +0 -12
  41. package/src/Devices/Insteon/InsteonLockDevice.ts +0 -42
  42. package/src/Devices/Insteon/InsteonMotionSensorDevice.ts +0 -43
  43. package/src/Devices/Insteon/InsteonOnOffOutletDevice.ts +0 -22
  44. package/src/Devices/Insteon/InsteonRelayDevice.ts +0 -20
  45. package/src/Devices/Insteon/InsteonRelaySwitchDevice.ts +0 -8
  46. package/src/Devices/Insteon/InsteonSmokeSensorDevice.ts +0 -12
  47. package/src/Devices/Insteon/InsteonThermostatDevice.ts +0 -39
  48. package/src/Devices/Insteon/insteondevice.ts +0 -47
  49. package/src/Events/EventType.ts +0 -27
  50. package/src/Events/ISYEvent.ts +0 -9
  51. package/src/Events/NodeEvent.ts +0 -9
  52. package/src/Events/PropertyChangedEvent.ts +0 -11
  53. package/src/Families.ts +0 -30
  54. package/src/ISY.ts +0 -768
  55. package/src/ISYConstants.ts +0 -182
  56. package/src/ISYNode.ts +0 -195
  57. package/src/ISYScene.ts +0 -120
  58. package/src/ISYVariable.ts +0 -49
  59. package/src/isyproductinfo.json +0 -378
  60. package/src/utils.ts +0 -108
  61. package/test/testsuite.js +0 -607
  62. package/tsconfig.json +0 -27
  63. package/tslint.json +0 -28
@@ -1,1825 +0,0 @@
1
- export interface DeviceSpec {
2
- make: string[];
3
- manufacturerURL: string[];
4
- model: string[];
5
- icon: string[];
6
- archive: string[];
7
- chart: string[];
8
- queryOnInit: string[];
9
- oneNodeAtATime: string[];
10
- baseProtocolOptional: string[];
11
- }
12
-
13
- export interface UpnpDevice {
14
- utype: string[];
15
- version: string[];
16
- }
17
-
18
- export interface UpnpService {
19
- utype: string[];
20
- version: string[];
21
- }
22
-
23
- export interface UpnpSpec {
24
- upnpDevice: UpnpDevice[];
25
- upnpService: UpnpService[];
26
- }
27
-
28
- export interface Control {
29
- name: string[];
30
- label: string[];
31
- }
32
-
33
- export interface Control {
34
- control: Control[];
35
- }
36
-
37
- export interface Root {
38
- id: string[];
39
- name: string[];
40
- }
41
-
42
- export interface Product {
43
- id: string[];
44
- desc: string[];
45
- }
46
-
47
- export interface Feature {
48
- id: string[];
49
- desc: string[];
50
- isInstalled: string[];
51
- isAvailable: string[];
52
- }
53
-
54
- export interface Feature {
55
- feature: Feature[];
56
- }
57
-
58
- export interface $ {
59
- type: string;
60
- version: string;
61
- }
62
-
63
- export interface Secsy {
64
- $: $;
65
- }
66
-
67
- export interface $ {
68
- type: string;
69
- version: string;
70
- }
71
-
72
-
73
-
74
- e
75
- "configuration": {
76
- "deviceSpecs": [{
77
- "make": [
78
- "Universal Devices Inc."
79
- ],
80
- "manufacturerURL": [
81
- "https://www.universal-devices.com"
82
- ],
83
- "model": [
84
- "ISY994i Series"
85
- ],
86
- "icon": [
87
- "/web/udlogo.jpg"
88
- ],
89
- "archive": [
90
- "/web/insteon.jar"
91
- ],
92
- "chart": [
93
- "/web/chart.jar"
94
- ],
95
- "queryOnInit": [
96
- "true"
97
- ],
98
- "oneNodeAtATime": [
99
- "true"
100
- ],
101
- "baseProtocolOptional": [
102
- "false"
103
- ]
104
- }],
105
- "upnpSpecs": [{
106
- "upnpDevice": [{
107
- "utype": [
108
- "X_Insteon_Lighting_Device"
109
- ],
110
- "version": [
111
- "1"
112
- ]
113
- }],
114
- "upnpService": [{
115
- "utype": [
116
- "X_Insteon_Lighting_Service"
117
- ],
118
- "version": [
119
- "1"
120
- ]
121
- }]
122
- }],
123
- "controls": [{
124
- "control": [{
125
- "name": [
126
- "QUERY"
127
- ],
128
- "label": [
129
- "Query Device"
130
- ]
131
- },
132
- {
133
- "name": [
134
- "ST"
135
- ],
136
- "label": [
137
- "Status"
138
- ],
139
- "readOnly": [
140
- "true"
141
- ],
142
- "isQueryAble": [
143
- "true"
144
- ],
145
- "isNumeric": [
146
- "true"
147
- ],
148
- "numericUnit": [
149
- "%"
150
- ]
151
- },
152
- {
153
- "name": [
154
- "OL"
155
- ],
156
- "label": [
157
- "On Level"
158
- ],
159
- "readOnly": [
160
- "false"
161
- ],
162
- "isQueryAble": [
163
- "true"
164
- ],
165
- "isNumeric": [
166
- "true"
167
- ],
168
- "numericUnit": [
169
- "%"
170
- ]
171
- },
172
- {
173
- "name": [
174
- "RR"
175
- ],
176
- "label": [
177
- "Ramp Rate"
178
- ],
179
- "readOnly": [
180
- "false"
181
- ],
182
- "isQueryAble": [
183
- "true"
184
- ],
185
- "isNumeric": [
186
- "true"
187
- ],
188
- "numericUnit": [
189
- "%"
190
- ]
191
- },
192
- {
193
- "name": [
194
- "DON"
195
- ],
196
- "label": [
197
- "On"
198
- ]
199
- },
200
- {
201
- "name": [
202
- "DFON"
203
- ],
204
- "label": [
205
- "Fast On"
206
- ]
207
- },
208
- {
209
- "name": [
210
- "DOF"
211
- ],
212
- "label": [
213
- "Off"
214
- ]
215
- },
216
- {
217
- "name": [
218
- "DFOF"
219
- ],
220
- "label": [
221
- "Fast Off"
222
- ]
223
- },
224
- {
225
- "name": [
226
- "BRT"
227
- ],
228
- "label": [
229
- "Brighten"
230
- ]
231
- },
232
- {
233
- "name": [
234
- "DIM"
235
- ],
236
- "label": [
237
- "Dim"
238
- ]
239
- },
240
- {
241
- "name": [
242
- "BMAN"
243
- ],
244
- "label": [
245
- "Deprecated - Use FDUP or FDDOWN"
246
- ]
247
- },
248
- {
249
- "name": [
250
- "SMAN"
251
- ],
252
- "label": [
253
- "Deprecated - Use FDSTOP"
254
- ]
255
- },
256
- {
257
- "name": [
258
- "FDUP"
259
- ],
260
- "label": [
261
- "Fade Up"
262
- ]
263
- },
264
- {
265
- "name": [
266
- "FDDOWN"
267
- ],
268
- "label": [
269
- "Fade Down"
270
- ]
271
- },
272
- {
273
- "name": [
274
- "FDSTOP"
275
- ],
276
- "label": [
277
- "Fade Stop"
278
- ]
279
- },
280
- {
281
- "name": [
282
- "BEEP"
283
- ],
284
- "label": [
285
- "Beep"
286
- ]
287
- },
288
- {
289
- "name": [
290
- "RESET"
291
- ],
292
- "label": [
293
- "Reset values"
294
- ]
295
- },
296
- {
297
- "name": [
298
- "ERR"
299
- ],
300
- "label": [
301
- "Error"
302
- ]
303
- },
304
- {
305
- "name": [
306
- "CLITEMP"
307
- ],
308
- "label": [
309
- "Current Temperature"
310
- ],
311
- "readOnly": [
312
- "true"
313
- ],
314
- "isQueryAble": [
315
- "true"
316
- ],
317
- "isNumeric": [
318
- "true"
319
- ],
320
- "numericUnit": [
321
- "F"
322
- ]
323
- },
324
- {
325
- "name": [
326
- "CLISPH"
327
- ],
328
- "label": [
329
- "Heat Setpoint"
330
- ],
331
- "readOnly": [
332
- "false"
333
- ],
334
- "isQueryAble": [
335
- "true"
336
- ],
337
- "isNumeric": [
338
- "true"
339
- ],
340
- "numericUnit": [
341
- "F"
342
- ]
343
- },
344
- {
345
- "name": [
346
- "CLISPC"
347
- ],
348
- "label": [
349
- "Cool Setpoint"
350
- ],
351
- "readOnly": [
352
- "false"
353
- ],
354
- "isQueryAble": [
355
- "true"
356
- ],
357
- "isNumeric": [
358
- "true"
359
- ],
360
- "numericUnit": [
361
- "F"
362
- ]
363
- },
364
- {
365
- "name": [
366
- "CLIFS"
367
- ],
368
- "label": [
369
- "Fan Setting"
370
- ],
371
- "readOnly": [
372
- "false"
373
- ],
374
- "isQueryAble": [
375
- "true"
376
- ],
377
- "isNumeric": [
378
- "false"
379
- ],
380
- "actions": [{
381
- "action": [{
382
- "name": [
383
- "7"
384
- ],
385
- "label": [
386
- "On"
387
- ]
388
- },
389
- {
390
- "name": [
391
- "8"
392
- ],
393
- "label": [
394
- "Auto"
395
- ]
396
- }
397
- ]
398
- }]
399
- },
400
- {
401
- "name": [
402
- "CLIFSO"
403
- ],
404
- "label": [
405
- "Fan Setting Override"
406
- ]
407
- },
408
- {
409
- "name": [
410
- "CLIFRS"
411
- ],
412
- "label": [
413
- "Fan Running State"
414
- ]
415
- },
416
- {
417
- "name": [
418
- "CLIMD"
419
- ],
420
- "label": [
421
- "Thermostat Mode"
422
- ],
423
- "readOnly": [
424
- "false"
425
- ],
426
- "isQueryAble": [
427
- "true"
428
- ],
429
- "isNumeric": [
430
- "false"
431
- ],
432
- "actions": [{
433
- "action": [{
434
- "name": [
435
- "0"
436
- ],
437
- "label": [
438
- "Off"
439
- ]
440
- },
441
- {
442
- "name": [
443
- "1"
444
- ],
445
- "label": [
446
- "Heat"
447
- ]
448
- },
449
- {
450
- "name": [
451
- "2"
452
- ],
453
- "label": [
454
- "Cool"
455
- ]
456
- },
457
- {
458
- "name": [
459
- "3"
460
- ],
461
- "label": [
462
- "Auto"
463
- ]
464
- },
465
- {
466
- "name": [
467
- "4"
468
- ],
469
- "label": [
470
- "Fan"
471
- ]
472
- },
473
- {
474
- "name": [
475
- "5"
476
- ],
477
- "label": [
478
- "Program Auto"
479
- ]
480
- },
481
- {
482
- "name": [
483
- "6"
484
- ],
485
- "label": [
486
- "Program Heat"
487
- ]
488
- },
489
- {
490
- "name": [
491
- "7"
492
- ],
493
- "label": [
494
- "Program Cool"
495
- ]
496
- }
497
- ]
498
- }]
499
- },
500
- {
501
- "name": [
502
- "CLISMD"
503
- ],
504
- "label": [
505
- "Schedule Mode"
506
- ],
507
- "readOnly": [
508
- "false"
509
- ],
510
- "isQueryAble": [
511
- "true"
512
- ],
513
- "isNumeric": [
514
- "false"
515
- ],
516
- "actions": [{
517
- "action": [{
518
- "name": [
519
- "0"
520
- ],
521
- "label": [
522
- "Hold"
523
- ]
524
- },
525
- {
526
- "name": [
527
- "1"
528
- ],
529
- "label": [
530
- "Run"
531
- ]
532
- },
533
- {
534
- "name": [
535
- "2"
536
- ],
537
- "label": [
538
- "Away"
539
- ]
540
- }
541
- ]
542
- }]
543
- },
544
- {
545
- "name": [
546
- "CLIHUM"
547
- ],
548
- "label": [
549
- "Humidity"
550
- ],
551
- "readOnly": [
552
- "true"
553
- ],
554
- "isQueryAble": [
555
- "true"
556
- ],
557
- "isNumeric": [
558
- "true"
559
- ],
560
- "numericUnit": [
561
- "%"
562
- ]
563
- },
564
- {
565
- "name": [
566
- "CLIHCS"
567
- ],
568
- "label": [
569
- "Heat/Cool State"
570
- ],
571
- "readOnly": [
572
- "true"
573
- ],
574
- "isQueryAble": [
575
- "true"
576
- ],
577
- "isNumeric": [
578
- "false"
579
- ],
580
- "actions": [{
581
- "action": [{
582
- "name": [
583
- "0"
584
- ],
585
- "label": [
586
- "Off"
587
- ]
588
- },
589
- {
590
- "name": [
591
- "1"
592
- ],
593
- "label": [
594
- "Heat On"
595
- ]
596
- },
597
- {
598
- "name": [
599
- "2"
600
- ],
601
- "label": [
602
- "Cool On"
603
- ]
604
- }
605
- ]
606
- }]
607
- },
608
- {
609
- "name": [
610
- "CLIEMD"
611
- ],
612
- "label": [
613
- "Energy Mode"
614
- ],
615
- "readOnly": [
616
- "true"
617
- ],
618
- "isQueryAble": [
619
- "true"
620
- ],
621
- "isNumeric": [
622
- "true"
623
- ],
624
- "numericUnit": [
625
- "%"
626
- ]
627
- },
628
- {
629
- "name": [
630
- "UOM"
631
- ],
632
- "label": [
633
- "Unit"
634
- ],
635
- "readOnly": [
636
- "true"
637
- ],
638
- "isQueryAble": [
639
- "true"
640
- ],
641
- "isNumeric": [
642
- "false"
643
- ],
644
- "actions": [{
645
- "action": [{
646
- "name": [
647
- "1"
648
- ],
649
- "label": [
650
- "Celsius"
651
- ]
652
- },
653
- {
654
- "name": [
655
- "2"
656
- ],
657
- "label": [
658
- "Fahrenheit"
659
- ]
660
- }
661
- ]
662
- }]
663
- },
664
- {
665
- "name": [
666
- "CV"
667
- ],
668
- "label": [
669
- "Current Voltage"
670
- ],
671
- "readOnly": [
672
- "true"
673
- ],
674
- "isQueryAble": [
675
- "true"
676
- ],
677
- "isNumeric": [
678
- "true"
679
- ],
680
- "numericUnit": [
681
- "V"
682
- ]
683
- },
684
- {
685
- "name": [
686
- "CC"
687
- ],
688
- "label": [
689
- "Current Current"
690
- ],
691
- "readOnly": [
692
- "true"
693
- ],
694
- "isQueryAble": [
695
- "true"
696
- ],
697
- "isNumeric": [
698
- "true"
699
- ],
700
- "numericUnit": [
701
- "A"
702
- ]
703
- },
704
- {
705
- "name": [
706
- "PPW"
707
- ],
708
- "label": [
709
- "Polarized Power Used"
710
- ],
711
- "readOnly": [
712
- "true"
713
- ],
714
- "isQueryAble": [
715
- "true"
716
- ],
717
- "isNumeric": [
718
- "true"
719
- ],
720
- "numericUnit": [
721
- "W"
722
- ]
723
- },
724
- {
725
- "name": [
726
- "CPW"
727
- ],
728
- "label": [
729
- "Current Power Used"
730
- ],
731
- "readOnly": [
732
- "true"
733
- ],
734
- "isQueryAble": [
735
- "true"
736
- ],
737
- "isNumeric": [
738
- "true"
739
- ],
740
- "numericUnit": [
741
- "W"
742
- ]
743
- },
744
- {
745
- "name": [
746
- "TPW"
747
- ],
748
- "label": [
749
- "Total Power Used"
750
- ],
751
- "readOnly": [
752
- "true"
753
- ],
754
- "isQueryAble": [
755
- "true"
756
- ],
757
- "isNumeric": [
758
- "true"
759
- ],
760
- "numericUnit": [
761
- "kWs"
762
- ]
763
- },
764
- {
765
- "name": [
766
- "PF"
767
- ],
768
- "label": [
769
- "Power Factor"
770
- ],
771
- "readOnly": [
772
- "true"
773
- ],
774
- "isQueryAble": [
775
- "true"
776
- ],
777
- "isNumeric": [
778
- "true"
779
- ],
780
- "numericUnit": [
781
- "%"
782
- ]
783
- },
784
- {
785
- "name": [
786
- "ADRPST"
787
- ],
788
- "label": [
789
- "Auto DR Processing State"
790
- ],
791
- "readOnly": [
792
- "false"
793
- ],
794
- "isQueryAble": [
795
- "true"
796
- ],
797
- "isNumeric": [
798
- "false"
799
- ],
800
- "actions": [{
801
- "action": [{
802
- "name": [
803
- "0"
804
- ],
805
- "label": [
806
- "Auto Apply Off"
807
- ]
808
- },
809
- {
810
- "name": [
811
- "1"
812
- ],
813
- "label": [
814
- "Auto Apply On"
815
- ]
816
- }
817
- ]
818
- }]
819
- },
820
- {
821
- "name": [
822
- "BATLVL"
823
- ],
824
- "label": [
825
- "Battery level"
826
- ]
827
- },
828
- {
829
- "name": [
830
- "UAC"
831
- ],
832
- "label": [
833
- "Valid user access code entered"
834
- ]
835
- },
836
- {
837
- "name": [
838
- "USRNUM"
839
- ],
840
- "label": [
841
- "The user access code that associated with the most recent Alarm"
842
- ]
843
- },
844
- {
845
- "name": [
846
- "ALARM"
847
- ],
848
- "label": [
849
- "An alarm occurred (values are different for each device type)"
850
- ]
851
- },
852
- {
853
- "name": [
854
- "SECMD"
855
- ],
856
- "label": [
857
- "Device secure mode"
858
- ],
859
- "actions": [{
860
- "action": [{
861
- "name": [
862
- "0"
863
- ],
864
- "label": [
865
- "Device operation is not secured"
866
- ]
867
- },
868
- {
869
- "name": [
870
- "1"
871
- ],
872
- "label": [
873
- "Device operation is secured"
874
- ]
875
- }
876
- ]
877
- }]
878
- },
879
- {
880
- "name": [
881
- "BUSY"
882
- ],
883
- "label": [
884
- "Device is Busy"
885
- ]
886
- },
887
- {
888
- "name": [
889
- "CTL"
890
- ],
891
- "label": [
892
- "Controller Action"
893
- ]
894
- },
895
- {
896
- "name": [
897
- "AWAKE"
898
- ],
899
- "label": [
900
- "Awake"
901
- ]
902
- },
903
- {
904
- "name": [
905
- "DON3"
906
- ],
907
- "label": [
908
- "On 3 Key Presses"
909
- ]
910
- },
911
- {
912
- "name": [
913
- "DON4"
914
- ],
915
- "label": [
916
- "On 4 Key Presses"
917
- ]
918
- },
919
- {
920
- "name": [
921
- "DON5"
922
- ],
923
- "label": [
924
- "On 5 Key Presses"
925
- ]
926
- },
927
- {
928
- "name": [
929
- "DOF3"
930
- ],
931
- "label": [
932
- "Off 3 Key Presses"
933
- ]
934
- },
935
- {
936
- "name": [
937
- "DOF4"
938
- ],
939
- "label": [
940
- "Off 4 Key Presses"
941
- ]
942
- },
943
- {
944
- "name": [
945
- "DOF5"
946
- ],
947
- "label": [
948
- "Off 5 Key Presses"
949
- ]
950
- },
951
- {
952
- "name": [
953
- "HAIL"
954
- ],
955
- "label": [
956
- "Hail"
957
- ]
958
- },
959
- {
960
- "name": [
961
- "AIRFLOW"
962
- ],
963
- "label": [
964
- "Air Flow"
965
- ]
966
- },
967
- {
968
- "name": [
969
- "ATMPRES"
970
- ],
971
- "label": [
972
- "Atmospheric Pressure"
973
- ]
974
- },
975
- {
976
- "name": [
977
- "BARPRES"
978
- ],
979
- "label": [
980
- "Barometric Pressure"
981
- ]
982
- },
983
- {
984
- "name": [
985
- "ANGLPOS"
986
- ],
987
- "label": [
988
- "Angle Position"
989
- ]
990
- },
991
- {
992
- "name": [
993
- "CO2LVL"
994
- ],
995
- "label": [
996
- "CO2 Level"
997
- ]
998
- },
999
- {
1000
- "name": [
1001
- "DELAY"
1002
- ],
1003
- "label": [
1004
- "Delay"
1005
- ]
1006
- },
1007
- {
1008
- "name": [
1009
- "DEWPT"
1010
- ],
1011
- "label": [
1012
- "Dew Point"
1013
- ]
1014
- },
1015
- {
1016
- "name": [
1017
- "DISTANC"
1018
- ],
1019
- "label": [
1020
- "Distance"
1021
- ]
1022
- },
1023
- {
1024
- "name": [
1025
- "DUR"
1026
- ],
1027
- "label": [
1028
- "Duration"
1029
- ]
1030
- },
1031
- {
1032
- "name": [
1033
- "ELECCON"
1034
- ],
1035
- "label": [
1036
- "Electrical Conductivity"
1037
- ]
1038
- },
1039
- {
1040
- "name": [
1041
- "ELECRES"
1042
- ],
1043
- "label": [
1044
- "Electrical Resistivity"
1045
- ]
1046
- },
1047
- {
1048
- "name": [
1049
- "GPV"
1050
- ],
1051
- "label": [
1052
- "General Purpose Value"
1053
- ]
1054
- },
1055
- {
1056
- "name": [
1057
- "GVOL"
1058
- ],
1059
- "label": [
1060
- "Water Volume"
1061
- ]
1062
- },
1063
- {
1064
- "name": [
1065
- "LUMIN"
1066
- ],
1067
- "label": [
1068
- "Luminance"
1069
- ]
1070
- },
1071
- {
1072
- "name": [
1073
- "MODE"
1074
- ],
1075
- "label": [
1076
- "Mode"
1077
- ]
1078
- },
1079
- {
1080
- "name": [
1081
- "MOIST"
1082
- ],
1083
- "label": [
1084
- "Moisture"
1085
- ]
1086
- },
1087
- {
1088
- "name": [
1089
- "PULSCNT"
1090
- ],
1091
- "label": [
1092
- "Pulse Count"
1093
- ]
1094
- },
1095
- {
1096
- "name": [
1097
- "RAINRT"
1098
- ],
1099
- "label": [
1100
- "Rain Rate"
1101
- ]
1102
- },
1103
- {
1104
- "name": [
1105
- "ROTATE"
1106
- ],
1107
- "label": [
1108
- "Rotation"
1109
- ]
1110
- },
1111
- {
1112
- "name": [
1113
- "SEISINT"
1114
- ],
1115
- "label": [
1116
- "Seismic Intensity"
1117
- ]
1118
- },
1119
- {
1120
- "name": [
1121
- "SEISMAG"
1122
- ],
1123
- "label": [
1124
- "Seismic Magnitude"
1125
- ]
1126
- },
1127
- {
1128
- "name": [
1129
- "SOILT"
1130
- ],
1131
- "label": [
1132
- "Soil Temperature"
1133
- ]
1134
- },
1135
- {
1136
- "name": [
1137
- "SOLRAD"
1138
- ],
1139
- "label": [
1140
- "Solar Radiation"
1141
- ]
1142
- },
1143
- {
1144
- "name": [
1145
- "SPEED"
1146
- ],
1147
- "label": [
1148
- "Velocity"
1149
- ]
1150
- },
1151
- {
1152
- "name": [
1153
- "SVOL"
1154
- ],
1155
- "label": [
1156
- "Sound Volume"
1157
- ]
1158
- },
1159
- {
1160
- "name": [
1161
- "TANKCAP"
1162
- ],
1163
- "label": [
1164
- "Tank Capacity"
1165
- ]
1166
- },
1167
- {
1168
- "name": [
1169
- "TIDELVL"
1170
- ],
1171
- "label": [
1172
- "Tide Level"
1173
- ]
1174
- },
1175
- {
1176
- "name": [
1177
- "TIMEREM"
1178
- ],
1179
- "label": [
1180
- "Time remaining"
1181
- ]
1182
- },
1183
- {
1184
- "name": [
1185
- "UV"
1186
- ],
1187
- "label": [
1188
- "Ultraviolet"
1189
- ]
1190
- },
1191
- {
1192
- "name": [
1193
- "VOCLVL"
1194
- ],
1195
- "label": [
1196
- "Volatile Organic Compound (VOC) level"
1197
- ]
1198
- },
1199
- {
1200
- "name": [
1201
- "WATERT"
1202
- ],
1203
- "label": [
1204
- "Water Temperature"
1205
- ]
1206
- },
1207
- {
1208
- "name": [
1209
- "WEIGHT"
1210
- ],
1211
- "label": [
1212
- "Weight"
1213
- ]
1214
- },
1215
- {
1216
- "name": [
1217
- "WINDDIR"
1218
- ],
1219
- "label": [
1220
- "Wind Direction"
1221
- ]
1222
- },
1223
- {
1224
- "name": [
1225
- "WVOL"
1226
- ],
1227
- "label": [
1228
- "Water Volume"
1229
- ]
1230
- },
1231
- {
1232
- "name": [
1233
- "GV0"
1234
- ],
1235
- "label": [
1236
- "Custom Control 0"
1237
- ]
1238
- },
1239
- {
1240
- "name": [
1241
- "GV1"
1242
- ],
1243
- "label": [
1244
- "Custom Control 1"
1245
- ]
1246
- },
1247
- {
1248
- "name": [
1249
- "GV2"
1250
- ],
1251
- "label": [
1252
- "Custom Control 2"
1253
- ]
1254
- },
1255
- {
1256
- "name": [
1257
- "GV3"
1258
- ],
1259
- "label": [
1260
- "Custom Control 3"
1261
- ]
1262
- },
1263
- {
1264
- "name": [
1265
- "GV4"
1266
- ],
1267
- "label": [
1268
- "Custom Control 4"
1269
- ]
1270
- },
1271
- {
1272
- "name": [
1273
- "GV5"
1274
- ],
1275
- "label": [
1276
- "Custom Control 5"
1277
- ]
1278
- },
1279
- {
1280
- "name": [
1281
- "GV6"
1282
- ],
1283
- "label": [
1284
- "Custom Control 6"
1285
- ]
1286
- },
1287
- {
1288
- "name": [
1289
- "GV7"
1290
- ],
1291
- "label": [
1292
- "Custom Control 7"
1293
- ]
1294
- },
1295
- {
1296
- "name": [
1297
- "GV8"
1298
- ],
1299
- "label": [
1300
- "Custom Control 8"
1301
- ]
1302
- },
1303
- {
1304
- "name": [
1305
- "GV9"
1306
- ],
1307
- "label": [
1308
- "Custom Control 9"
1309
- ]
1310
- },
1311
- {
1312
- "name": [
1313
- "GV10"
1314
- ],
1315
- "label": [
1316
- "Custom Control 10"
1317
- ]
1318
- },
1319
- {
1320
- "name": [
1321
- "GV11"
1322
- ],
1323
- "label": [
1324
- "Custom Control 11"
1325
- ]
1326
- },
1327
- {
1328
- "name": [
1329
- "GV12"
1330
- ],
1331
- "label": [
1332
- "Custom Control 12"
1333
- ]
1334
- },
1335
- {
1336
- "name": [
1337
- "GV13"
1338
- ],
1339
- "label": [
1340
- "Custom Control 13"
1341
- ]
1342
- },
1343
- {
1344
- "name": [
1345
- "GV14"
1346
- ],
1347
- "label": [
1348
- "Custom Control 14"
1349
- ]
1350
- },
1351
- {
1352
- "name": [
1353
- "GV15"
1354
- ],
1355
- "label": [
1356
- "Custom Control 15"
1357
- ]
1358
- },
1359
- {
1360
- "name": [
1361
- "GV16"
1362
- ],
1363
- "label": [
1364
- "Custom Control 16"
1365
- ]
1366
- },
1367
- {
1368
- "name": [
1369
- "GV17"
1370
- ],
1371
- "label": [
1372
- "Custom Control 17"
1373
- ]
1374
- },
1375
- {
1376
- "name": [
1377
- "GV18"
1378
- ],
1379
- "label": [
1380
- "Custom Control 18"
1381
- ]
1382
- },
1383
- {
1384
- "name": [
1385
- "GV19"
1386
- ],
1387
- "label": [
1388
- "Custom Control 19"
1389
- ]
1390
- },
1391
- {
1392
- "name": [
1393
- "GV20"
1394
- ],
1395
- "label": [
1396
- "Custom Control 20"
1397
- ]
1398
- }
1399
- ]
1400
- }],
1401
- "driver_timestamp": [
1402
- "2018-07-12-14:53:23"
1403
- ],
1404
- "app": [
1405
- "Insteon_UD994"
1406
- ],
1407
- "app_version": [
1408
- "5.0.13"
1409
- ],
1410
- "app_full_version": [
1411
- "5.0.13A"
1412
- ],
1413
- "platform": [
1414
- "ISY-C-994"
1415
- ],
1416
- "build_timestamp": [
1417
- "2018-07-12-14:53:23"
1418
- ],
1419
- "root": [{
1420
- "id": [
1421
- "00:21:b9:02:03:35"
1422
- ],
1423
- "name": [
1424
- "ISY"
1425
- ]
1426
- }],
1427
- "product": [{
1428
- "id": [
1429
- "1110"
1430
- ],
1431
- "desc": [
1432
- "ISY 994i 1024 IR"
1433
- ]
1434
- }],
1435
- "features": [{
1436
- "feature": [{
1437
- "id": [
1438
- "21010"
1439
- ],
1440
- "desc": [
1441
- "OpenADR"
1442
- ],
1443
- "isInstalled": [
1444
- "true"
1445
- ],
1446
- "isAvailable": [
1447
- "true"
1448
- ]
1449
- },
1450
- {
1451
- "id": [
1452
- "21011"
1453
- ],
1454
- "desc": [
1455
- "Electricity Monitor"
1456
- ],
1457
- "isInstalled": [
1458
- "false"
1459
- ],
1460
- "isAvailable": [
1461
- "true"
1462
- ]
1463
- },
1464
- {
1465
- "id": [
1466
- "21012"
1467
- ],
1468
- "desc": [
1469
- "Gas Meter"
1470
- ],
1471
- "isInstalled": [
1472
- "false"
1473
- ],
1474
- "isAvailable": [
1475
- "false"
1476
- ]
1477
- },
1478
- {
1479
- "id": [
1480
- "21013"
1481
- ],
1482
- "desc": [
1483
- "Xenon Module"
1484
- ],
1485
- "isInstalled": [
1486
- "false"
1487
- ],
1488
- "isAvailable": [
1489
- "false"
1490
- ]
1491
- },
1492
- {
1493
- "id": [
1494
- "21020"
1495
- ],
1496
- "desc": [
1497
- "Weather Information"
1498
- ],
1499
- "isInstalled": [
1500
- "false"
1501
- ],
1502
- "isAvailable": [
1503
- "true"
1504
- ]
1505
- },
1506
- {
1507
- "id": [
1508
- "21030"
1509
- ],
1510
- "desc": [
1511
- "URL"
1512
- ],
1513
- "isInstalled": [
1514
- "false"
1515
- ],
1516
- "isAvailable": [
1517
- "false"
1518
- ]
1519
- },
1520
- {
1521
- "id": [
1522
- "21040"
1523
- ],
1524
- "desc": [
1525
- "Networking Module"
1526
- ],
1527
- "isInstalled": [
1528
- "false"
1529
- ],
1530
- "isAvailable": [
1531
- "true"
1532
- ]
1533
- },
1534
- {
1535
- "id": [
1536
- "21050"
1537
- ],
1538
- "desc": [
1539
- "AMI Electricity Meter"
1540
- ],
1541
- "isInstalled": [
1542
- "false"
1543
- ],
1544
- "isAvailable": [
1545
- "true"
1546
- ]
1547
- },
1548
- {
1549
- "id": [
1550
- "21051"
1551
- ],
1552
- "desc": [
1553
- "SEP ESP"
1554
- ],
1555
- "isInstalled": [
1556
- "false"
1557
- ],
1558
- "isAvailable": [
1559
- "false"
1560
- ]
1561
- },
1562
- {
1563
- "id": [
1564
- "21060"
1565
- ],
1566
- "desc": [
1567
- "A10/X10 for INSTEON"
1568
- ],
1569
- "isInstalled": [
1570
- "true"
1571
- ],
1572
- "isAvailable": [
1573
- "true"
1574
- ]
1575
- },
1576
- {
1577
- "id": [
1578
- "21070"
1579
- ],
1580
- "desc": [
1581
- "Portal Integration - Check-it.ca"
1582
- ],
1583
- "isInstalled": [
1584
- "false"
1585
- ],
1586
- "isAvailable": [
1587
- "true"
1588
- ]
1589
- },
1590
- {
1591
- "id": [
1592
- "21014"
1593
- ],
1594
- "desc": [
1595
- "Current Cost Meter"
1596
- ],
1597
- "isInstalled": [
1598
- "false"
1599
- ],
1600
- "isAvailable": [
1601
- "false"
1602
- ]
1603
- },
1604
- {
1605
- "id": [
1606
- "21080"
1607
- ],
1608
- "desc": [
1609
- "Broadband SEP Device"
1610
- ],
1611
- "isInstalled": [
1612
- "false"
1613
- ],
1614
- "isAvailable": [
1615
- "true"
1616
- ]
1617
- },
1618
- {
1619
- "id": [
1620
- "21071"
1621
- ],
1622
- "desc": [
1623
- "Portal Integration - GreenNet.com"
1624
- ],
1625
- "isInstalled": [
1626
- "false"
1627
- ],
1628
- "isAvailable": [
1629
- "true"
1630
- ]
1631
- },
1632
- {
1633
- "id": [
1634
- "22000"
1635
- ],
1636
- "desc": [
1637
- "RCS Zigbee Device Support"
1638
- ],
1639
- "isInstalled": [
1640
- "false"
1641
- ],
1642
- "isAvailable": [
1643
- "true"
1644
- ]
1645
- },
1646
- {
1647
- "id": [
1648
- "23000"
1649
- ],
1650
- "desc": [
1651
- "Irrigation/ETo Module"
1652
- ],
1653
- "isInstalled": [
1654
- "false"
1655
- ],
1656
- "isAvailable": [
1657
- "true"
1658
- ]
1659
- },
1660
- {
1661
- "id": [
1662
- "21090"
1663
- ],
1664
- "desc": [
1665
- "Elk Security System"
1666
- ],
1667
- "isInstalled": [
1668
- "false"
1669
- ],
1670
- "isAvailable": [
1671
- "true"
1672
- ]
1673
- },
1674
- {
1675
- "id": [
1676
- "21072"
1677
- ],
1678
- "desc": [
1679
- "Portal Integration - BestBuy.com"
1680
- ],
1681
- "isInstalled": [
1682
- "false"
1683
- ],
1684
- "isAvailable": [
1685
- "true"
1686
- ]
1687
- },
1688
- {
1689
- "id": [
1690
- "24000"
1691
- ],
1692
- "desc": [
1693
- "NorthWrite NOC Module"
1694
- ],
1695
- "isInstalled": [
1696
- "false"
1697
- ],
1698
- "isAvailable": [
1699
- "true"
1700
- ]
1701
- },
1702
- {
1703
- "id": [
1704
- "21073"
1705
- ],
1706
- "desc": [
1707
- "Portal Integration - MobiLinc"
1708
- ],
1709
- "isInstalled": [
1710
- "false"
1711
- ],
1712
- "isAvailable": [
1713
- "true"
1714
- ]
1715
- },
1716
- {
1717
- "id": [
1718
- "21100"
1719
- ],
1720
- "desc": [
1721
- "Z-Wave"
1722
- ],
1723
- "isInstalled": [
1724
- "false"
1725
- ],
1726
- "isAvailable": [
1727
- "true"
1728
- ]
1729
- },
1730
- {
1731
- "id": [
1732
- "25000"
1733
- ],
1734
- "desc": [
1735
- "NCD Device Support"
1736
- ],
1737
- "isInstalled": [
1738
- "false"
1739
- ],
1740
- "isAvailable": [
1741
- "true"
1742
- ]
1743
- },
1744
- {
1745
- "id": [
1746
- "21074"
1747
- ],
1748
- "desc": [
1749
- "Portal Integration - VantagePoint"
1750
- ],
1751
- "isInstalled": [
1752
- "false"
1753
- ],
1754
- "isAvailable": [
1755
- "true"
1756
- ]
1757
- },
1758
- {
1759
- "id": [
1760
- "21075"
1761
- ],
1762
- "desc": [
1763
- "Portal Integration - UDI"
1764
- ],
1765
- "isInstalled": [
1766
- "true"
1767
- ],
1768
- "isAvailable": [
1769
- "true"
1770
- ]
1771
- },
1772
- {
1773
- "id": [
1774
- "25100"
1775
- ],
1776
- "desc": [
1777
- "EM3 Monitor - ISY Attached"
1778
- ],
1779
- "isInstalled": [
1780
- "false"
1781
- ],
1782
- "isAvailable": [
1783
- "true"
1784
- ]
1785
- }
1786
- ]
1787
- }],
1788
- "triggers": [
1789
- "true"
1790
- ],
1791
- "maxTriggers": [
1792
- "2048"
1793
- ],
1794
- "variables": [
1795
- "true"
1796
- ],
1797
- "nodedefs": [
1798
- "true"
1799
- ],
1800
- "secsys": [{
1801
- "$": {
1802
- "type": "ELK",
1803
- "version": "2"
1804
- }
1805
- }],
1806
- "baseDriver": [{
1807
- "$": {
1808
- "type": "INSTEON",
1809
- "version": "2"
1810
- }
1811
- }],
1812
- "security": [{
1813
- "_": "SSL",
1814
- "$": {
1815
- "v": "3.3"
1816
- }
1817
- }],
1818
- "isDefaultCert": [
1819
- "false"
1820
- ],
1821
- "maxSSLStrength": [
1822
- "2048"
1823
- ]
1824
- }
1825
- }