smart-nodes 0.1.0

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 (62) hide show
  1. package/LICENSE +21 -0
  2. package/LICENSE.md +21 -0
  3. package/README.md +127 -0
  4. package/central/central.html +328 -0
  5. package/central/central.js +95 -0
  6. package/compare/compare.html +137 -0
  7. package/compare/compare.js +151 -0
  8. package/delay/delay.html +192 -0
  9. package/delay/delay.js +175 -0
  10. package/examples/central.json +804 -0
  11. package/examples/central.png +0 -0
  12. package/examples/compare.json +916 -0
  13. package/examples/compare.png +0 -0
  14. package/examples/delay.json +198 -0
  15. package/examples/delay.png +0 -0
  16. package/examples/forwarder.json +152 -0
  17. package/examples/forwarder.png +0 -0
  18. package/examples/hysteresis.json +358 -0
  19. package/examples/hysteresis.png +0 -0
  20. package/examples/light-control.json +499 -0
  21. package/examples/light-control.png +0 -0
  22. package/examples/logic.json +562 -0
  23. package/examples/logic.png +0 -0
  24. package/examples/long-press-control.json +113 -0
  25. package/examples/long-press-control.png +0 -0
  26. package/examples/multi-press-control.json +136 -0
  27. package/examples/multi-press-control.png +0 -0
  28. package/examples/scene-control.json +535 -0
  29. package/examples/scene-control.png +0 -0
  30. package/examples/scheduler.json +164 -0
  31. package/examples/scheduler.png +0 -0
  32. package/examples/shutter-complex-control.json +489 -0
  33. package/examples/shutter-complex-control.png +0 -0
  34. package/examples/shutter-control.json +457 -0
  35. package/examples/shutter-control.png +0 -0
  36. package/examples/statistic.json +1112 -0
  37. package/examples/statistic.png +0 -0
  38. package/forwarder/forwarder.html +100 -0
  39. package/forwarder/forwarder.js +95 -0
  40. package/hysteresis/hysteresis.html +152 -0
  41. package/hysteresis/hysteresis.js +146 -0
  42. package/light-control/light-control.html +358 -0
  43. package/light-control/light-control.js +231 -0
  44. package/logic/logic.html +168 -0
  45. package/logic/logic.js +171 -0
  46. package/long-press-control/long-press-control.html +74 -0
  47. package/long-press-control/long-press-control.js +75 -0
  48. package/multi-press-control/multi-press-control.html +135 -0
  49. package/multi-press-control/multi-press-control.js +68 -0
  50. package/package.json +59 -0
  51. package/persistence.js +74 -0
  52. package/scene-control/scene-control.html +575 -0
  53. package/scene-control/scene-control.js +265 -0
  54. package/scheduler/scheduler.html +338 -0
  55. package/scheduler/scheduler.js +209 -0
  56. package/shutter-complex-control/shutter-complex-control.html +330 -0
  57. package/shutter-complex-control/shutter-complex-control.js +399 -0
  58. package/shutter-control/shutter-control.html +283 -0
  59. package/shutter-control/shutter-control.js +208 -0
  60. package/smart_helper.js +156 -0
  61. package/statistic/statistic.html +107 -0
  62. package/statistic/statistic.js +196 -0
@@ -0,0 +1,804 @@
1
+ [
2
+ {
3
+ "id": "dfdc3b0c1fa91566",
4
+ "type": "tab",
5
+ "label": "Central",
6
+ "disabled": false,
7
+ "info": "",
8
+ "env": []
9
+ },
10
+ {
11
+ "id": "dfa01b87bc3d1f9d",
12
+ "type": "smart_central-control",
13
+ "z": "dfdc3b0c1fa91566",
14
+ "name": "Central light",
15
+ "mode": "light",
16
+ "links": [
17
+ "8bd18af1e0c2cd28",
18
+ "ee9af56699440e8c"
19
+ ],
20
+ "x": 350,
21
+ "y": 100,
22
+ "wires": []
23
+ },
24
+ {
25
+ "id": "ee9af56699440e8c",
26
+ "type": "smart_light-control",
27
+ "z": "dfdc3b0c1fa91566",
28
+ "name": "Light 1 (10s)",
29
+ "icon": "light",
30
+ "max_time_on": "10",
31
+ "max_time_on_unit": "s",
32
+ "alarm_action": "NOTHING",
33
+ "links": [
34
+ "dfa01b87bc3d1f9d"
35
+ ],
36
+ "x": 810,
37
+ "y": 80,
38
+ "wires": [
39
+ [
40
+ "374256bac730a8d1"
41
+ ]
42
+ ]
43
+ },
44
+ {
45
+ "id": "95acb8bb0ca1705d",
46
+ "type": "smart_scene-control",
47
+ "z": "dfdc3b0c1fa91566",
48
+ "name": "scene 1 (10s)",
49
+ "max_time_on": "10",
50
+ "max_time_on_unit": "s",
51
+ "outputs": 1,
52
+ "output_items": [
53
+ {
54
+ "name": "Light 1"
55
+ }
56
+ ],
57
+ "scenes": [
58
+ {
59
+ "name": "All",
60
+ "outputs": "1"
61
+ }
62
+ ],
63
+ "links": [
64
+ "5b054c2eed0ef912"
65
+ ],
66
+ "x": 820,
67
+ "y": 300,
68
+ "wires": [
69
+ [
70
+ "1dea9a7ab923705c"
71
+ ]
72
+ ]
73
+ },
74
+ {
75
+ "id": "5b054c2eed0ef912",
76
+ "type": "smart_central-control",
77
+ "z": "dfdc3b0c1fa91566",
78
+ "name": "Central scene",
79
+ "mode": "light",
80
+ "links": [
81
+ "1503ad6337802626",
82
+ "95acb8bb0ca1705d"
83
+ ],
84
+ "x": 360,
85
+ "y": 320,
86
+ "wires": []
87
+ },
88
+ {
89
+ "id": "aa64be428fe27822",
90
+ "type": "smart_central-control",
91
+ "z": "dfdc3b0c1fa91566",
92
+ "name": "Central shutter",
93
+ "mode": "shutter",
94
+ "links": [
95
+ "2cee4db9018ea507",
96
+ "96682737b021e4e6"
97
+ ],
98
+ "x": 360,
99
+ "y": 580,
100
+ "wires": []
101
+ },
102
+ {
103
+ "id": "96682737b021e4e6",
104
+ "type": "smart_shutter-complex-control",
105
+ "z": "dfdc3b0c1fa91566",
106
+ "name": "shutter 1 (10s)",
107
+ "max_time": "10",
108
+ "revert_time_ms": 100,
109
+ "alarm_action": "NOTHING",
110
+ "links": [
111
+ "aa64be428fe27822"
112
+ ],
113
+ "x": 820,
114
+ "y": 500,
115
+ "wires": [
116
+ [
117
+ "e927a90c97a4c2b9"
118
+ ],
119
+ [
120
+ "b5f92434f6cb62d9"
121
+ ],
122
+ [
123
+ "44b2a5b605c94c6e"
124
+ ]
125
+ ]
126
+ },
127
+ {
128
+ "id": "374256bac730a8d1",
129
+ "type": "debug",
130
+ "z": "dfdc3b0c1fa91566",
131
+ "name": "debug 39",
132
+ "active": true,
133
+ "tosidebar": true,
134
+ "console": false,
135
+ "tostatus": false,
136
+ "complete": "true",
137
+ "targetType": "full",
138
+ "statusVal": "",
139
+ "statusType": "auto",
140
+ "x": 1100,
141
+ "y": 80,
142
+ "wires": []
143
+ },
144
+ {
145
+ "id": "1dea9a7ab923705c",
146
+ "type": "debug",
147
+ "z": "dfdc3b0c1fa91566",
148
+ "name": "debug 40",
149
+ "active": true,
150
+ "tosidebar": true,
151
+ "console": false,
152
+ "tostatus": false,
153
+ "complete": "true",
154
+ "targetType": "full",
155
+ "statusVal": "",
156
+ "statusType": "auto",
157
+ "x": 1100,
158
+ "y": 300,
159
+ "wires": []
160
+ },
161
+ {
162
+ "id": "e927a90c97a4c2b9",
163
+ "type": "debug",
164
+ "z": "dfdc3b0c1fa91566",
165
+ "name": "debug 41",
166
+ "active": true,
167
+ "tosidebar": true,
168
+ "console": false,
169
+ "tostatus": false,
170
+ "complete": "true",
171
+ "targetType": "full",
172
+ "statusVal": "",
173
+ "statusType": "auto",
174
+ "x": 1100,
175
+ "y": 460,
176
+ "wires": []
177
+ },
178
+ {
179
+ "id": "b5f92434f6cb62d9",
180
+ "type": "debug",
181
+ "z": "dfdc3b0c1fa91566",
182
+ "name": "debug 42",
183
+ "active": true,
184
+ "tosidebar": true,
185
+ "console": false,
186
+ "tostatus": false,
187
+ "complete": "true",
188
+ "targetType": "full",
189
+ "statusVal": "",
190
+ "statusType": "auto",
191
+ "x": 1100,
192
+ "y": 500,
193
+ "wires": []
194
+ },
195
+ {
196
+ "id": "44b2a5b605c94c6e",
197
+ "type": "debug",
198
+ "z": "dfdc3b0c1fa91566",
199
+ "name": "debug 43",
200
+ "active": true,
201
+ "tosidebar": true,
202
+ "console": false,
203
+ "tostatus": false,
204
+ "complete": "true",
205
+ "targetType": "full",
206
+ "statusVal": "",
207
+ "statusType": "auto",
208
+ "x": 1100,
209
+ "y": 540,
210
+ "wires": []
211
+ },
212
+ {
213
+ "id": "51353097b85f000e",
214
+ "type": "inject",
215
+ "z": "dfdc3b0c1fa91566",
216
+ "name": "",
217
+ "props": [
218
+ {
219
+ "p": "topic",
220
+ "vt": "str"
221
+ }
222
+ ],
223
+ "repeat": "",
224
+ "crontab": "",
225
+ "once": false,
226
+ "onceDelay": 0.1,
227
+ "topic": "on",
228
+ "x": 150,
229
+ "y": 60,
230
+ "wires": [
231
+ [
232
+ "dfa01b87bc3d1f9d"
233
+ ]
234
+ ]
235
+ },
236
+ {
237
+ "id": "17e76f246765af84",
238
+ "type": "inject",
239
+ "z": "dfdc3b0c1fa91566",
240
+ "name": "",
241
+ "props": [
242
+ {
243
+ "p": "topic",
244
+ "vt": "str"
245
+ }
246
+ ],
247
+ "repeat": "",
248
+ "crontab": "",
249
+ "once": false,
250
+ "onceDelay": 0.1,
251
+ "topic": "off",
252
+ "x": 150,
253
+ "y": 100,
254
+ "wires": [
255
+ [
256
+ "dfa01b87bc3d1f9d"
257
+ ]
258
+ ]
259
+ },
260
+ {
261
+ "id": "c549df4bbe9a35e9",
262
+ "type": "inject",
263
+ "z": "dfdc3b0c1fa91566",
264
+ "name": "",
265
+ "props": [
266
+ {
267
+ "p": "topic",
268
+ "vt": "str"
269
+ }
270
+ ],
271
+ "repeat": "",
272
+ "crontab": "",
273
+ "once": false,
274
+ "onceDelay": 0.1,
275
+ "topic": "on",
276
+ "x": 150,
277
+ "y": 280,
278
+ "wires": [
279
+ [
280
+ "5b054c2eed0ef912"
281
+ ]
282
+ ]
283
+ },
284
+ {
285
+ "id": "1494f5e857762a78",
286
+ "type": "inject",
287
+ "z": "dfdc3b0c1fa91566",
288
+ "name": "",
289
+ "props": [
290
+ {
291
+ "p": "topic",
292
+ "vt": "str"
293
+ }
294
+ ],
295
+ "repeat": "",
296
+ "crontab": "",
297
+ "once": false,
298
+ "onceDelay": 0.1,
299
+ "topic": "off",
300
+ "x": 150,
301
+ "y": 320,
302
+ "wires": [
303
+ [
304
+ "5b054c2eed0ef912"
305
+ ]
306
+ ]
307
+ },
308
+ {
309
+ "id": "01928a0d6a44f3b9",
310
+ "type": "inject",
311
+ "z": "dfdc3b0c1fa91566",
312
+ "name": "",
313
+ "props": [
314
+ {
315
+ "p": "topic",
316
+ "vt": "str"
317
+ }
318
+ ],
319
+ "repeat": "",
320
+ "crontab": "",
321
+ "once": false,
322
+ "onceDelay": 0.1,
323
+ "topic": "up",
324
+ "x": 150,
325
+ "y": 500,
326
+ "wires": [
327
+ [
328
+ "aa64be428fe27822"
329
+ ]
330
+ ]
331
+ },
332
+ {
333
+ "id": "de20729577436ab1",
334
+ "type": "inject",
335
+ "z": "dfdc3b0c1fa91566",
336
+ "name": "",
337
+ "props": [
338
+ {
339
+ "p": "topic",
340
+ "vt": "str"
341
+ }
342
+ ],
343
+ "repeat": "",
344
+ "crontab": "",
345
+ "once": false,
346
+ "onceDelay": 0.1,
347
+ "topic": "stop",
348
+ "x": 150,
349
+ "y": 580,
350
+ "wires": [
351
+ [
352
+ "aa64be428fe27822"
353
+ ]
354
+ ]
355
+ },
356
+ {
357
+ "id": "089b4655dbbd32e4",
358
+ "type": "inject",
359
+ "z": "dfdc3b0c1fa91566",
360
+ "name": "",
361
+ "props": [
362
+ {
363
+ "p": "topic",
364
+ "vt": "str"
365
+ }
366
+ ],
367
+ "repeat": "",
368
+ "crontab": "",
369
+ "once": false,
370
+ "onceDelay": 0.1,
371
+ "topic": "down",
372
+ "x": 150,
373
+ "y": 620,
374
+ "wires": [
375
+ [
376
+ "aa64be428fe27822"
377
+ ]
378
+ ]
379
+ },
380
+ {
381
+ "id": "8bd18af1e0c2cd28",
382
+ "type": "smart_light-control",
383
+ "z": "dfdc3b0c1fa91566",
384
+ "name": "Light 2",
385
+ "icon": "light",
386
+ "max_time_on": "0",
387
+ "max_time_on_unit": "s",
388
+ "alarm_action": "NOTHING",
389
+ "links": [
390
+ "dfa01b87bc3d1f9d"
391
+ ],
392
+ "x": 790,
393
+ "y": 140,
394
+ "wires": [
395
+ [
396
+ "9712e428f6a48294"
397
+ ]
398
+ ]
399
+ },
400
+ {
401
+ "id": "9712e428f6a48294",
402
+ "type": "debug",
403
+ "z": "dfdc3b0c1fa91566",
404
+ "name": "debug 44",
405
+ "active": true,
406
+ "tosidebar": true,
407
+ "console": false,
408
+ "tostatus": false,
409
+ "complete": "true",
410
+ "targetType": "full",
411
+ "statusVal": "",
412
+ "statusType": "auto",
413
+ "x": 1100,
414
+ "y": 140,
415
+ "wires": []
416
+ },
417
+ {
418
+ "id": "4b7196a2c4bdbc95",
419
+ "type": "inject",
420
+ "z": "dfdc3b0c1fa91566",
421
+ "name": "",
422
+ "props": [
423
+ {
424
+ "p": "topic",
425
+ "vt": "str"
426
+ }
427
+ ],
428
+ "repeat": "",
429
+ "crontab": "",
430
+ "once": false,
431
+ "onceDelay": 0.1,
432
+ "topic": "on",
433
+ "x": 630,
434
+ "y": 60,
435
+ "wires": [
436
+ [
437
+ "ee9af56699440e8c"
438
+ ]
439
+ ]
440
+ },
441
+ {
442
+ "id": "244339f94691c106",
443
+ "type": "inject",
444
+ "z": "dfdc3b0c1fa91566",
445
+ "name": "",
446
+ "props": [
447
+ {
448
+ "p": "topic",
449
+ "vt": "str"
450
+ }
451
+ ],
452
+ "repeat": "",
453
+ "crontab": "",
454
+ "once": false,
455
+ "onceDelay": 0.1,
456
+ "topic": "off",
457
+ "x": 630,
458
+ "y": 100,
459
+ "wires": [
460
+ [
461
+ "ee9af56699440e8c"
462
+ ]
463
+ ]
464
+ },
465
+ {
466
+ "id": "3aaf9f433139c570",
467
+ "type": "debug",
468
+ "z": "dfdc3b0c1fa91566",
469
+ "name": "debug 45",
470
+ "active": true,
471
+ "tosidebar": true,
472
+ "console": false,
473
+ "tostatus": false,
474
+ "complete": "true",
475
+ "targetType": "full",
476
+ "statusVal": "",
477
+ "statusType": "auto",
478
+ "x": 1100,
479
+ "y": 360,
480
+ "wires": []
481
+ },
482
+ {
483
+ "id": "d5047c286b084633",
484
+ "type": "inject",
485
+ "z": "dfdc3b0c1fa91566",
486
+ "name": "",
487
+ "props": [
488
+ {
489
+ "p": "topic",
490
+ "vt": "str"
491
+ }
492
+ ],
493
+ "repeat": "",
494
+ "crontab": "",
495
+ "once": false,
496
+ "onceDelay": 0.1,
497
+ "topic": "on",
498
+ "x": 630,
499
+ "y": 280,
500
+ "wires": [
501
+ [
502
+ "95acb8bb0ca1705d"
503
+ ]
504
+ ]
505
+ },
506
+ {
507
+ "id": "4deef6f286f0bd99",
508
+ "type": "inject",
509
+ "z": "dfdc3b0c1fa91566",
510
+ "name": "",
511
+ "props": [
512
+ {
513
+ "p": "topic",
514
+ "vt": "str"
515
+ }
516
+ ],
517
+ "repeat": "",
518
+ "crontab": "",
519
+ "once": false,
520
+ "onceDelay": 0.1,
521
+ "topic": "off",
522
+ "x": 630,
523
+ "y": 320,
524
+ "wires": [
525
+ [
526
+ "95acb8bb0ca1705d"
527
+ ]
528
+ ]
529
+ },
530
+ {
531
+ "id": "22747676fe42b518",
532
+ "type": "inject",
533
+ "z": "dfdc3b0c1fa91566",
534
+ "name": "",
535
+ "props": [
536
+ {
537
+ "p": "topic",
538
+ "vt": "str"
539
+ }
540
+ ],
541
+ "repeat": "",
542
+ "crontab": "",
543
+ "once": false,
544
+ "onceDelay": 0.1,
545
+ "topic": "up",
546
+ "x": 630,
547
+ "y": 460,
548
+ "wires": [
549
+ [
550
+ "96682737b021e4e6"
551
+ ]
552
+ ]
553
+ },
554
+ {
555
+ "id": "392778d2c206fa6c",
556
+ "type": "inject",
557
+ "z": "dfdc3b0c1fa91566",
558
+ "name": "",
559
+ "props": [
560
+ {
561
+ "p": "topic",
562
+ "vt": "str"
563
+ }
564
+ ],
565
+ "repeat": "",
566
+ "crontab": "",
567
+ "once": false,
568
+ "onceDelay": 0.1,
569
+ "topic": "down",
570
+ "x": 630,
571
+ "y": 540,
572
+ "wires": [
573
+ [
574
+ "96682737b021e4e6"
575
+ ]
576
+ ]
577
+ },
578
+ {
579
+ "id": "2cee4db9018ea507",
580
+ "type": "smart_shutter-complex-control",
581
+ "z": "dfdc3b0c1fa91566",
582
+ "name": "shutter 2",
583
+ "max_time": 60,
584
+ "revert_time_ms": 100,
585
+ "alarm_action": "NOTHING",
586
+ "links": [
587
+ "aa64be428fe27822"
588
+ ],
589
+ "x": 800,
590
+ "y": 640,
591
+ "wires": [
592
+ [
593
+ "8d23df31edb5111a"
594
+ ],
595
+ [
596
+ "1dd79b67c40e147a"
597
+ ],
598
+ [
599
+ "c5e577277de90ac4"
600
+ ]
601
+ ]
602
+ },
603
+ {
604
+ "id": "8d23df31edb5111a",
605
+ "type": "debug",
606
+ "z": "dfdc3b0c1fa91566",
607
+ "name": "debug 46",
608
+ "active": true,
609
+ "tosidebar": true,
610
+ "console": false,
611
+ "tostatus": false,
612
+ "complete": "true",
613
+ "targetType": "full",
614
+ "statusVal": "",
615
+ "statusType": "auto",
616
+ "x": 1100,
617
+ "y": 600,
618
+ "wires": []
619
+ },
620
+ {
621
+ "id": "1dd79b67c40e147a",
622
+ "type": "debug",
623
+ "z": "dfdc3b0c1fa91566",
624
+ "name": "debug 47",
625
+ "active": true,
626
+ "tosidebar": true,
627
+ "console": false,
628
+ "tostatus": false,
629
+ "complete": "true",
630
+ "targetType": "full",
631
+ "statusVal": "",
632
+ "statusType": "auto",
633
+ "x": 1100,
634
+ "y": 640,
635
+ "wires": []
636
+ },
637
+ {
638
+ "id": "c5e577277de90ac4",
639
+ "type": "debug",
640
+ "z": "dfdc3b0c1fa91566",
641
+ "name": "debug 48",
642
+ "active": true,
643
+ "tosidebar": true,
644
+ "console": false,
645
+ "tostatus": false,
646
+ "complete": "true",
647
+ "targetType": "full",
648
+ "statusVal": "",
649
+ "statusType": "auto",
650
+ "x": 1100,
651
+ "y": 680,
652
+ "wires": []
653
+ },
654
+ {
655
+ "id": "b3ab13035b9bc68b",
656
+ "type": "inject",
657
+ "z": "dfdc3b0c1fa91566",
658
+ "name": "",
659
+ "props": [
660
+ {
661
+ "p": "topic",
662
+ "vt": "str"
663
+ }
664
+ ],
665
+ "repeat": "",
666
+ "crontab": "",
667
+ "once": false,
668
+ "onceDelay": 0.1,
669
+ "topic": "toggle",
670
+ "x": 150,
671
+ "y": 140,
672
+ "wires": [
673
+ [
674
+ "dfa01b87bc3d1f9d"
675
+ ]
676
+ ]
677
+ },
678
+ {
679
+ "id": "956eb2be0aa966c3",
680
+ "type": "inject",
681
+ "z": "dfdc3b0c1fa91566",
682
+ "name": "",
683
+ "props": [
684
+ {
685
+ "p": "topic",
686
+ "vt": "str"
687
+ }
688
+ ],
689
+ "repeat": "",
690
+ "crontab": "",
691
+ "once": false,
692
+ "onceDelay": 0.1,
693
+ "topic": "toggle",
694
+ "x": 150,
695
+ "y": 360,
696
+ "wires": [
697
+ [
698
+ "5b054c2eed0ef912"
699
+ ]
700
+ ]
701
+ },
702
+ {
703
+ "id": "1503ad6337802626",
704
+ "type": "smart_scene-control",
705
+ "z": "dfdc3b0c1fa91566",
706
+ "name": "scene 2",
707
+ "max_time_on": "0",
708
+ "max_time_on_unit": "s",
709
+ "outputs": 1,
710
+ "output_items": [
711
+ {
712
+ "name": "Light 1"
713
+ }
714
+ ],
715
+ "scenes": [
716
+ {
717
+ "name": "All",
718
+ "outputs": "1"
719
+ }
720
+ ],
721
+ "links": [
722
+ "5b054c2eed0ef912"
723
+ ],
724
+ "x": 800,
725
+ "y": 360,
726
+ "wires": [
727
+ [
728
+ "3aaf9f433139c570"
729
+ ]
730
+ ]
731
+ },
732
+ {
733
+ "id": "ca4567679badaae5",
734
+ "type": "inject",
735
+ "z": "dfdc3b0c1fa91566",
736
+ "name": "",
737
+ "props": [
738
+ {
739
+ "p": "topic",
740
+ "vt": "str"
741
+ }
742
+ ],
743
+ "repeat": "",
744
+ "crontab": "",
745
+ "once": false,
746
+ "onceDelay": 0.1,
747
+ "topic": "up_stop",
748
+ "x": 140,
749
+ "y": 540,
750
+ "wires": [
751
+ [
752
+ "aa64be428fe27822"
753
+ ]
754
+ ]
755
+ },
756
+ {
757
+ "id": "b5fe1d0342e20275",
758
+ "type": "inject",
759
+ "z": "dfdc3b0c1fa91566",
760
+ "name": "",
761
+ "props": [
762
+ {
763
+ "p": "topic",
764
+ "vt": "str"
765
+ }
766
+ ],
767
+ "repeat": "",
768
+ "crontab": "",
769
+ "once": false,
770
+ "onceDelay": 0.1,
771
+ "topic": "down_stop",
772
+ "x": 130,
773
+ "y": 660,
774
+ "wires": [
775
+ [
776
+ "aa64be428fe27822"
777
+ ]
778
+ ]
779
+ },
780
+ {
781
+ "id": "60fc3412cd541835",
782
+ "type": "inject",
783
+ "z": "dfdc3b0c1fa91566",
784
+ "name": "",
785
+ "props": [
786
+ {
787
+ "p": "topic",
788
+ "vt": "str"
789
+ }
790
+ ],
791
+ "repeat": "",
792
+ "crontab": "",
793
+ "once": false,
794
+ "onceDelay": 0.1,
795
+ "topic": "stop",
796
+ "x": 630,
797
+ "y": 500,
798
+ "wires": [
799
+ [
800
+ "96682737b021e4e6"
801
+ ]
802
+ ]
803
+ }
804
+ ]