-
Notifications
You must be signed in to change notification settings - Fork 3
/
app.json
1660 lines (1660 loc) · 52.2 KB
/
app.json
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
{
"_comment": "This file is generated. Please edit .homeycompose/app.json instead.",
"id": "com.coulisse.motionblinds",
"version": "1.3.0",
"compatibility": ">=5.0.0",
"sdk": 3,
"brandColor": "#BCB1A9",
"homepage": "https://motionblinds.com/",
"homeyCommunityTopicId": 45608,
"support": "https://community.athom.com/t/app-motion-blinds/45608",
"source": "https://github.com/TedTolboom/com.coulisse.motionblinds",
"bugs": {
"url": "https://community.athom.com/t/app-motion-blinds/45608"
},
"name": {
"en": "Motionblinds",
"nl": "Motionblinds"
},
"description": {
"en": "Smart window coverings by Coulisse.",
"nl": "Slimme raamdecoratie van Coulisse."
},
"category": [
"appliances"
],
"permissions": [],
"images": {
"large": "/assets/images/large.png",
"small": "/assets/images/small.png"
},
"author": {
"name": "Ted Tolboom",
"email": "dTNL.Homey@gmail.com"
},
"contributors": {
"developers": [
{
"name": "Edwin Delsman",
"email": "sp.delsman+motion.app@gmail.com"
}
]
},
"contributing": {
"donate": {
"paypal": {
"username": "TedTolboom"
}
}
},
"flow": {
"triggers": [
{
"id": "trigger_BLIND_BLOCKED",
"title": {
"en": "The blind was blocked",
"nl": "Het gordijn werd geblokkeerd"
},
"_titleFormatted": {
"en": "[[device]]The blind was blocked",
"nl": "[[device]]Het gordijn werd geblokkeerd"
},
"hint": {
"en": "The blind refused to close because a contact alarm was active, in order to protect the blind.",
"nl": "Het gordijn weigerde te sluiten omdat een contactalarm actief was, om zo het gordijn te beschermen."
},
"args": [
{
"name": "device",
"type": "device",
"filter": {
"driver_id": "driver_blind|driver_venetian|driver_curtain|driver_tdbu",
"capabilities": "alarm_contact"
}
}
]
},
{
"id": "trigger_BLIND_UNEXPECTED_REPORT",
"title": {
"en": "The blind was operated by an exteral command",
"nl": "Het gordijn werd bediend door een extern commando"
},
"_titleFormatted": {
"en": "[[device]]The blind was operated by an exteral command",
"nl": "[[device]]Het gordijn werd bediend door een extern commando"
},
"hint": {
"en": "The blind reported it's state whithout Homey sending a command. Usually this means it was operated by a remote or the original Motionblinds app.",
"nl": "Het gordijn stuurde een status op zonder dat Homey een opdracht heeft gestuurd. Meestal betekent dit dat het gordijn werd bediend door een afstandsbediening of de originele Motionblinds app."
},
"args": [
{
"name": "device",
"type": "device",
"filter": {
"driver_id": "driver_blind|driver_venetian|driver_curtain|driver_tdbu"
}
}
]
},
{
"id": "windowcoverings_set_changed.bottom",
"title": {
"en": "Bottom position changed",
"nl": "Onderpositie veranderd"
},
"_titleFormatted": {
"en": "[[device]]Bottom position changed",
"nl": "[[device]]Onderpositie veranderd"
},
"tokens": [
{
"name": "windowcoverings_set_bottom",
"type": "number",
"title": {
"en": "Bottom position",
"nl": "Onderpositie"
},
"example": 0.5
}
],
"args": [
{
"name": "device",
"type": "device",
"filter": {
"driver_id": "driver_tdbu",
"capabilities": "windowcoverings_set.bottom"
}
}
]
},
{
"id": "windowcoverings_set_changed.top",
"title": {
"en": "Top position changed",
"nl": "Bovenpositie veranderd"
},
"_titleFormatted": {
"en": "[[device]]Top position changed",
"nl": "[[device]]Bovenpositie veranderd"
},
"tokens": [
{
"name": "windowcoverings_set_top",
"type": "number",
"title": {
"en": "Top Position",
"nl": "Bovenpositie"
},
"example": 0.5
}
],
"args": [
{
"name": "device",
"type": "device",
"filter": {
"driver_id": "driver_tdbu",
"capabilities": "windowcoverings_set.top"
}
}
]
},
{
"id": "windowcoverings_state_changed.bottom",
"title": {
"en": "The bottom state changed",
"nl": "De onderstatus is veranderd"
},
"titleFormatted": {
"en": "The bottom state changed to [[state]]",
"nl": "De onderstatus is veranderd naar [[state]]"
},
"args": [
{
"name": "device",
"type": "device",
"filter": {
"driver_id": "driver_tdbu",
"capabilities": "windowcoverings_state.bottom"
}
},
{
"name": "state",
"title": {
"en": "Bottom state",
"nl": "Onderstatus"
},
"type": "dropdown",
"values": [
{
"id": "up",
"title": {
"en": "Up",
"nl": "Omhoog",
"de": "Oben",
"fr": "Haut",
"it": "Alzate",
"sv": "Upp",
"no": "Opp",
"es": "Arriba",
"da": "Oppe"
}
},
{
"id": "idle",
"title": {
"en": "Idle",
"nl": "Stil",
"de": "Inaktiv",
"fr": "Inactif",
"it": "Socchiuse",
"sv": "Inaktiv",
"no": "Ikke aktiv",
"es": "Inactivos",
"da": "Inaktiv"
}
},
{
"id": "down",
"title": {
"en": "Down",
"nl": "Omlaag",
"de": "Unten",
"fr": "Bas",
"it": "Abbassate",
"sv": "Ned",
"no": "Ned",
"es": "Abajo",
"da": "Nede"
}
}
]
}
]
},
{
"id": "windowcoverings_state_changed.top",
"title": {
"en": "The top state changed",
"nl": "De bovenstatus is veranderd"
},
"titleFormatted": {
"en": "The top state changed to [[state]]",
"nl": "De bovenstatus is veranderd naar [[state]]"
},
"args": [
{
"name": "device",
"type": "device",
"filter": {
"driver_id": "driver_tdbu",
"capabilities": "windowcoverings_state.top"
}
},
{
"name": "state",
"title": {
"en": "Top state",
"nl": "Bovenstatus"
},
"type": "dropdown",
"values": [
{
"id": "up",
"title": {
"en": "Up",
"nl": "Omhoog",
"de": "Oben",
"fr": "Haut",
"it": "Alzate",
"sv": "Upp",
"no": "Opp",
"es": "Arriba",
"da": "Oppe"
}
},
{
"id": "idle",
"title": {
"en": "Idle",
"nl": "Stil",
"de": "Inaktiv",
"fr": "Inactif",
"it": "Socchiuse",
"sv": "Inaktiv",
"no": "Ikke aktiv",
"es": "Inactivos",
"da": "Inaktiv"
}
},
{
"id": "down",
"title": {
"en": "Down",
"nl": "Omlaag",
"de": "Unten",
"fr": "Bas",
"it": "Abbassate",
"sv": "Ned",
"no": "Ned",
"es": "Abajo",
"da": "Nede"
}
}
]
}
]
}
],
"conditions": [
{
"id": "condition_BLIND_FULLY_CLOSED",
"title": {
"en": "The position !{{is|isn't}} fully closed",
"nl": "De positie !{{is|is niet}} volledig dicht"
},
"_titleFormatted": {
"en": "[[device]]The position !{{is|isn't}} fully closed",
"nl": "[[device]]De positie !{{is|is niet}} volledig dicht"
},
"hint": {
"en": "This Flow will continue if the blind is/isn't in the fully closed position.",
"nl": "Deze flow gaat door als het gordijn wel/niet in de volledig gesloten positie staat."
},
"args": [
{
"name": "device",
"type": "device",
"filter": {
"driver_id": "driver_blind|driver_venetian|driver_curtain|driver_tdbu",
"capabilities": "windowcoverings_set|windowcoverings_set.top|windowcoverings_bottom"
}
}
]
},
{
"id": "condition_BLIND_FULLY_OPEN",
"title": {
"en": "The position !{{is|isn't}} fully open",
"nl": "De positie !{{is|is niet}} volledig open"
},
"_titleFormatted": {
"en": "[[device]]The position !{{is|isn't}} fully open",
"nl": "[[device]]De positie !{{is|is niet}} volledig open"
},
"hint": {
"en": "This Flow will continue if the blind is/isn't in the fully open position.",
"nl": "Deze flow gaat door als het gordijn wel/niet in de volledig open positie staat."
},
"args": [
{
"name": "device",
"type": "device",
"filter": {
"driver_id": "driver_blind|driver_venetian|driver_curtain|driver_tdbu",
"capabilities": "windowcoverings_set|windowcoverings_set.top|windowcoverings_bottom"
}
}
]
},
{
"id": "windowcoverings_state_is.bottom",
"title": {
"en": "The bottom state is !{{|not}}",
"nl": "De onderstatus is !{{|niet}}"
},
"titleFormatted": {
"en": "The bottom state is !{{|not}} [[state]]",
"nl": "De onderstatus is !{{|niet}} [[state]]"
},
"args": [
{
"name": "device",
"type": "device",
"filter": {
"driver_id": "driver_tdbu",
"capabilities": "windowcoverings_state.bottom"
}
},
{
"name": "state",
"title": {
"en": "Bottom state",
"nl": "Onderstatus"
},
"type": "dropdown",
"values": [
{
"id": "up",
"title": {
"en": "Up",
"nl": "Omhoog",
"de": "Oben",
"fr": "Haut",
"it": "Alzate",
"sv": "Upp",
"no": "Opp",
"es": "Arriba",
"da": "Oppe"
}
},
{
"id": "idle",
"title": {
"en": "Idle",
"nl": "Stil",
"de": "Inaktiv",
"fr": "Inactif",
"it": "Socchiuse",
"sv": "Inaktiv",
"no": "Ikke aktiv",
"es": "Inactivos",
"da": "Inaktiv"
}
},
{
"id": "down",
"title": {
"en": "Down",
"nl": "Omlaag",
"de": "Unten",
"fr": "Bas",
"it": "Abbassate",
"sv": "Ned",
"no": "Ned",
"es": "Abajo",
"da": "Nede"
}
}
]
}
]
},
{
"id": "windowcoverings_state_is.top",
"title": {
"en": "The top state is !{{|not}}",
"nl": "De bovenstatus is !{{|niet}}"
},
"titleFormatted": {
"en": "The top state is !{{|not}} [[state]]",
"nl": "De bovenstatus is !{{|niet}} [[state]]"
},
"args": [
{
"name": "device",
"type": "device",
"filter": {
"driver_id": "driver_tdbu",
"capabilities": "windowcoverings_state.top"
}
},
{
"name": "state",
"title": {
"en": "Top state",
"nl": "Bovenstatus"
},
"type": "dropdown",
"values": [
{
"id": "up",
"title": {
"en": "Up",
"nl": "Omhoog",
"de": "Oben",
"fr": "Haut",
"it": "Alzate",
"sv": "Upp",
"no": "Opp",
"es": "Arriba",
"da": "Oppe"
}
},
{
"id": "idle",
"title": {
"en": "Idle",
"nl": "Stil",
"de": "Inaktiv",
"fr": "Inactif",
"it": "Socchiuse",
"sv": "Inaktiv",
"no": "Ikke aktiv",
"es": "Inactivos",
"da": "Inaktiv"
}
},
{
"id": "down",
"title": {
"en": "Down",
"nl": "Omlaag",
"de": "Unten",
"fr": "Bas",
"it": "Abbassate",
"sv": "Ned",
"no": "Ned",
"es": "Abajo",
"da": "Nede"
}
}
]
}
]
}
],
"actions": [
{
"id": "action_BLOCK_BLIND",
"title": {
"en": "Block blind from closing",
"nl": "Blokkeer gordijn sluiten"
},
"_titleFormatted": {
"en": "[[device]]Block blind from closing",
"nl": "[[device]]Blokkeer gordijn sluiten"
},
"hint": {
"en": "Set this when a window is opened inward under the blind to prevent the blind from closing. The blind's contact alarm will be turned on.",
"nl": "Zet dit aan als een raam naar binnen toe is opengezet om te voorkomen dat het gordijn sluit. Het contactalarm van het gordijn gaat aan."
},
"args": [
{
"name": "device",
"type": "device",
"filter": {
"driver_id": "driver_blind|driver_venetian|driver_curtain|driver_tdbu",
"capabilities": "alarm_contact"
}
}
]
},
{
"id": "action_UNBLOCK_BLIND",
"title": {
"en": "Unblock blind from closing",
"nl": "Deblokkeer gordijn sluiten"
},
"_titleFormatted": {
"en": "[[device]]nblock blind from closing",
"nl": "[[device]]Deblokkeer gordijn sluiten"
},
"hint": {
"en": "Lets the curtain close normally again when the window that was blocking the blind is closed. The blind's contact alarm will be turned off.",
"nl": "Laat het gordijn weer normaal dichtgaan als het raam dat het gordijn blokkeerde wordt gesloten. Het contactalarm van het gordijn gaat uit."
},
"args": [
{
"name": "device",
"type": "device",
"filter": {
"driver_id": "driver_blind|driver_venetian|driver_curtain|driver_tdbu",
"capabilities": "alarm_contact"
}
}
]
},
{
"id": "action_windowcoverings_tilt_set",
"title": {
"en": "Set the tilt to",
"nl": "Zet de kanteling naar"
},
"titleFormatted": {
"en": "Set the tilt to [[tilt]]",
"nl": "Zet de kanteling naar [[tilt]]"
},
"args": [
{
"name": "device",
"type": "device",
"filter": {
"driver_id": "driver_blind|driver_venetian|driver_curtain|driver_tdbu",
"capabilities": "windowcoverings_tilt_set"
}
},
{
"name": "tilt",
"title": {
"en": "tilt position",
"nl": "kanteling positie"
},
"type": "range",
"min": 0,
"max": 1,
"step": 0.01,
"value": 0.5,
"label": "%",
"labelMultiplier": 100,
"labelDecimals": 0
}
]
},
{
"id": "set_windowcoverings_state.bottom",
"title": {
"en": "Set bottom state",
"nl": "Zet de onderstatus"
},
"titleFormatted": {
"en": "Set bottom state to [[state]]",
"nl": "Zet de onderstatus naar [[state]]"
},
"args": [
{
"name": "device",
"type": "device",
"filter": {
"driver_id": "driver_tdbu",
"capabilities": "windowcoverings_state.bottom"
}
},
{
"name": "state",
"type": "dropdown",
"values": [
{
"id": "up",
"title": {
"en": "Up",
"nl": "Omhoog",
"de": "Oben",
"fr": "Haut",
"it": "Alzate",
"sv": "Upp",
"no": "Opp",
"es": "Arriba",
"da": "Oppe"
}
},
{
"id": "idle",
"title": {
"en": "Idle",
"nl": "Stil",
"de": "Inaktiv",
"fr": "Inactif",
"it": "Socchiuse",
"sv": "Inaktiv",
"no": "Ikke aktiv",
"es": "Inactivos",
"da": "Inaktiv"
}
},
{
"id": "down",
"title": {
"en": "Down",
"nl": "Omlaag",
"de": "Unten",
"fr": "Bas",
"it": "Abbassate",
"sv": "Ned",
"no": "Ned",
"es": "Abajo",
"da": "Nede"
}
}
]
}
]
},
{
"id": "set_windowcoverings_state.top",
"title": {
"en": "Set top state",
"nl": "Zet de bovenstatus"
},
"titleFormatted": {
"en": "Set top state to [[state]]",
"nl": "Zet de bovenstatus naar [[state]]"
},
"args": [
{
"name": "device",
"type": "device",
"filter": {
"driver_id": "driver_tdbu",
"capabilities": "windowcoverings_state.top"
}
},
{
"name": "state",
"title": {
"en": "State",
"nl": "Status"
},
"type": "dropdown",
"values": [
{
"id": "up",
"title": {
"en": "Up",
"nl": "Omhoog",
"de": "Oben",
"fr": "Haut",
"it": "Alzate",
"sv": "Upp",
"no": "Opp",
"es": "Arriba",
"da": "Oppe"
}
},
{
"id": "idle",
"title": {
"en": "Idle",
"nl": "Stil",
"de": "Inaktiv",
"fr": "Inactif",
"it": "Socchiuse",
"sv": "Inaktiv",
"no": "Ikke aktiv",
"es": "Inactivos",
"da": "Inaktiv"
}
},
{
"id": "down",
"title": {
"en": "Down",
"nl": "Omlaag",
"de": "Unten",
"fr": "Bas",
"it": "Abbassate",
"sv": "Ned",
"no": "Ned",
"es": "Abajo",
"da": "Nede"
}
}
]
}
]
},
{
"id": "windowcoverings_set.bottom",
"title": {
"en": "Set the bottom position to",
"nl": "Zet de onderpositie naar"
},
"titleFormatted": {
"en": "Set the bottom position to [[windowcoverings_set]]",
"nl": "Zet de onderpositie naar [[windowcoverings_set]]"
},
"hint": {
"en": "Change the bottom position to the highest position (100%), lowest position (0%) or a value in between.",
"nl": "Verander de onderpositie naar de hoogste positie (100%), laagste positie (0%) of een een waarde daartussen."
},
"args": [
{
"name": "device",
"type": "device",
"filter": {
"driver_id": "driver_tdbu",
"capabilities": "windowcoverings_set.bottom"
}
},
{
"name": "windowcoverings_set",
"title": {
"en": "bottom position",
"nl": "onderpositie"
},
"type": "range",
"min": 0,
"max": 1,
"step": 0.01,
"value": 0.5,
"label": "%",
"labelMultiplier": 100,
"labelDecimals": 0
}
]
},
{
"id": "windowcoverings_set.top",
"title": {
"en": "Set the top position to",
"nl": "Zet de bovenpositie naar"
},
"titleFormatted": {
"en": "Set the top position to [[windowcoverings_set]]",
"nl": "Zet de bovenpositie naar [[windowcoverings_set]]"
},
"hint": {
"en": "Change the top position to the highest position (100%), lowest position (0%) or a value in between.",
"nl": "Verander de bovenpositie naar de hoogste positie (100%), laagste positie (0%) of een een waarde daartussen."
},
"args": [
{
"name": "device",
"type": "device",
"filter": {
"driver_id": "driver_tdbu",
"capabilities": "windowcoverings_set.top"
}
},
{
"name": "windowcoverings_set",
"title": {
"en": "top position",
"nl": "bovenpositie"
},
"type": "range",
"min": 0,
"max": 1,
"step": 0.01,
"value": 0.5,
"label": "%",
"labelMultiplier": 100,
"labelDecimals": 0
}
]
},
{
"id": "windowcoverings_set.top_bottom",
"title": {
"en": "Set the top and bottom position to",
"nl": "Zet de boven- en onderpositie naar"
},
"titleFormatted": {
"en": "Set top position to [[windowcoverings_set_top]] and bottom position to [[windowcoverings_set_bottom]]",
"nl": "Zet bovenpositie naar [[windowcoverings_set_top]] en onderpositie naar [[windowcoverings_set_bottom]]"
},
"hint": {
"en": "Change both the top and bottom position to the highest position (100%), lowest position (0%) or a value in between. The top position must be greater than or equal to the bottom position.",
"nl": "Verander zowel de boven- als de onderpositie naar de hoogste positie (100%), laagste positie (0%) of een een waarde daartussen. De bovenpositie moet groter of gelijk zijn aan de onderpositie."
},
"args": [
{
"name": "device",
"type": "device",
"filter": {
"driver_id": "driver_tdbu",
"capabilities": "windowcoverings_set.top|windowcoverings_set.bottom"
}
},
{
"name": "windowcoverings_set_top",
"title": {
"en": "top position",
"nl": "bovenpositie"
},
"type": "range",
"min": 0,
"max": 1,
"step": 0.01,
"value": 0.5,
"label": "%",
"labelMultiplier": 100,
"labelDecimals": 0
},
{
"name": "windowcoverings_set_bottom",
"title": {
"en": "bottom position",
"nl": "onderpositie"
},
"type": "range",
"min": 0,
"max": 1,
"step": 0.01,
"value": 0.5,
"label": "%",
"labelMultiplier": 100,
"labelDecimals": 0
}
]
}
]
},
"drivers": [
{
"name": {
"en": "Blind",
"nl": "Rolgordijn"
},
"class": "blinds",
"capabilities": [
"windowcoverings_state",
"windowcoverings_set",
"alarm_contact",
"measure_battery",
"measure_rf_rssi"
],
"capabilitiesOptions": {
"windowcoverings_tilt_set": {
"title": {
"en": "Tilt",
"nl": "Kanteling"
}
},
"alarm_contact": {
"title": {
"en": "Blocked",
"nl": "Geblokkeerd"
},
"zoneActivity": false,
"icon": "/assets/hand.svg",
"insightsTitleTrue": {
"en": "Blocked",
"nl": "Geblokkeerd"
},
"insightsTitleFalse": {
"en": "Unblocked",
"nl": "Gedeblokkeerd"
}
}
},
"energy": {
"batteries": [
"INTERNAL"
]
},
"images": {
"large": "/drivers/driver_blind/assets/images/large.png",
"small": "/drivers/driver_blind/assets/images/small.png"
},
"pair": [
{
"id": "list_devices",
"template": "list_devices",
"navigation": {
"next": "add_my_devices"
}
},
{
"id": "add_my_devices",
"template": "add_devices"
}
],
"settings": [
{
"type": "group",
"label": {
"en": "Parameters",
"nl": "Parameters"
},
"children": [
{
"id": "maxTravelTime",
"type": "number",
"label": {
"en": "Maximum travel time",
"nl": "Maximale looptijd"
},
"value": 60,
"min": 10,
"max": 300,
"units": {
"en": "seconds",
"nl": "seconden"
},
"hint": {
"en": "The maximum number of seconds that it takes to completely open or close. If the state of the device is not reported within this timeframe, the status will be actively retrieved. Add 5 seconds to be sure, so the state won't be retrieved too soon or unneeded.",
"nl": "Het maximum aantal seconden dat het duurt om volledig te openen of te sluiten. Als de status van het gordijn niet binnen deze tijd binnenkomt wordt de status actief opgehaald. Voeg 5 seconden toe voor de zekerheid, zodat de status niet te vroeg of onnodig wordt opgehaald."
}
},
{
"id": "addBlockAlarm",
"type": "checkbox",
"value": false,
"label": {
"en": "Add an alarm to block opening",
"nl": "Alarm toevoegen om openen te blokkeren"
},
"hint": {
"en": "Enable this to add a contact alarm to the blind. Then use flows to copy the alarm state from a window sensor, so the blind won't go down when the window is open.",
"nl": "Zet dit aan als om een contactalarm toe te voegen aan dit gordijn. Gebruik vervolgens flows om de alarmstatus van een raansensor over te nemen, zodat het gordijn niet opengaat als het raam open is."
}
},
{
"id": "inRemoteGroup",
"type": "checkbox",
"value": false,
"label": {
"en": "Part of remote groep",
"nl": "Onderdeel van afstandsbedieningsgroep"
},
"hint": {
"en": "If this blind is one of multiple devices controlled by the same remote at the same time, turn this on. This makes sure that when the remote changes the blinds, Homey will see all the changes. This is needed because often only one of the blinds will report the change from the remote, and the others won't.",
"nl": "Zet dit aan als dit gordijn er één van meer gordijnen is die allemaal tegelijk met de zelfde afstandsbediening bediend worden. Dit zorgt ervoor dat Homey alle veranderingen ziet als de afstandsbediening is gebruikt. Dit is nodig omdat vaak maar van één van de gordijnen de wijziging van de afstandsbediening doorgeeft, en de overige niet."
}
}
]
},
{
"type": "group",
"label": {
"en": "Properties",
"nl": "Eigenschappen"
},
"children": [
{
"id": "deviceTypeName",
"type": "label",