forked from totalimmersion/com.somfy.tahoma
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathapp.json
23310 lines (23310 loc) · 733 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.somfy.tahoma",
"sdk": 3,
"platforms": [
"local",
"cloud"
],
"brandColor": "#FAB800",
"name": {
"en": "Somfy TaHoma & Connexoon",
"nl": "Somfy TaHoma & Connexoon",
"da": "Somfy TaHoma & Connexoon",
"de": "Somfy TaHoma & Connexoon",
"es": "Somfy TaHoma & Connexoon",
"fr": "Somfy TaHoma & Connexoon",
"it": "Somfy TaHoma & Connexoon",
"no": "Somfy TaHoma & Connexoon",
"sv": "Somfy TaHoma & Connexoon",
"pl": "Somfy TaHoma & Connexoon",
"ru": "Somfy TaHoma & Connexoon",
"ko": "Somfy TaHoma & Connexoon"
},
"description": {
"en": "The heart of your Smart Home",
"nl": "Het hart van je slimme huis",
"da": "Hjertet i dit smarte hjem",
"de": "Das Herz deines Smart Homes",
"es": "El corazón de tu hogar inteligente",
"fr": "Le cœur de votre maison intelligente",
"it": "Il cuore della tua casa smart",
"no": "Hjertet i ditt smarte hjem",
"sv": "Hjärtat i ditt smarta hem",
"pl": "Serce Twojego inteligentnego domu",
"ru": "Сердце вашего умного дома",
"ko": "스마트 홈의 중심"
},
"version": "4.0.103",
"compatibility": ">=12.0.0",
"author": {
"name": "Adrian Rockall",
"email": "[email protected]"
},
"contributing": {
"donate": {
"paypal": {
"username": "adyrock"
}
}
},
"bugs": {
"url": "https://github.com/AdyRock/com.somfy.tahoma/issues"
},
"source": "https://github.com/AdyRock/com.somfy.tahoma",
"homeyCommunityTopicId": 35206,
"support": "https://github.com/AdyRock/com.somfy.tahoma/issues",
"contributors": {
"developers": [
{
"name": "Lennart Kuijs",
"email": "[email protected]"
},
{
"name": "Adrian Rockall",
"email": "[email protected]"
},
{
"name": "Anders Fjeldstad",
"email": "[email protected]"
}
]
},
"images": {
"small": "/assets/images/small.png",
"large": "/assets/images/large.png"
},
"category": [
"appliances",
"climate",
"security"
],
"tags": {
"en": [
"Somfy TaHoma",
"Somfy Connexoon",
"io-homecontrol",
"io",
"Sunis Wirefree",
"lightsensor",
"Thermis WireFree",
"temperature sensor",
"exterior blinds",
"screens",
"Velux",
"roof window",
"One Alarm",
"Outdoor Camera",
"enocean"
],
"nl": [
"Somfy TaHoma",
"Somfy Connexoon",
"io-homecontrol",
"io",
"Sunis Wirefree",
"lichtsensor",
"Thermis WireFree",
"temperatuur sensor",
"zonwering",
"screens",
"Velux",
"dakraam",
"One Alarm",
"Outdoor Camera"
]
},
"api": {
"login": {
"method": "post",
"path": "/login/"
},
"logout": {
"method": "post",
"path": "/logout/"
},
"GetDeviceLog": {
"method": "post",
"path": "/GetDeviceLog/"
},
"SendDeviceLog": {
"method": "post",
"path": "/SendDeviceLog/",
"public": true
},
"SendInfoLog": {
"method": "post",
"path": "/SendInfoLog/"
},
"SendEventLog": {
"method": "post",
"path": "/SendEventLog/",
"public": true
},
"GetLocalTokens": {
"method": "post",
"path": "/GetLocalTokens/"
},
"DeleteLocalToken": {
"method": "post",
"path": "/DeleteLocalToken/"
}
},
"flow": {
"triggers": [
{
"title": {
"en": "It has stopped raining",
"nl": "Het is gestopt met regenen",
"fr": "Il a cessé de pleuvoir",
"de": "Es hat aufgehört zu regnen",
"es": "Ha dejado de llover",
"it": "Ha smesso di piovere",
"pt": "Parou de chover",
"pl": "Deszcz się skończył"
},
"args": [
{
"name": "device",
"type": "device",
"filter": "driver_id=io_rain_sensor"
}
],
"id": "alarm_rain_false"
},
{
"title": {
"en": "It has started raining",
"nl": "Het is begonnen met regenen",
"fr": "Il a commencé à pleuvoir",
"de": "Es hat angefangen zu regnen",
"es": "Ha empezado a llover",
"it": "Ha iniziato a piovere",
"pt": "Começou a chover",
"pl": "Zaczęło padać"
},
"args": [
{
"name": "device",
"type": "device",
"filter": "driver_id=io_rain_sensor"
}
],
"id": "alarm_rain_true"
},
{
"title": {
"en": "The alarm zone state changed",
"nl": "De alarmzone is veranderd"
},
"tokens": [
{
"name": "zoneA",
"type": "boolean",
"title": {
"en": "Alarm zone A state"
},
"example": "true"
},
{
"name": "zoneB",
"type": "boolean",
"title": {
"en": "Alarm zone B state"
},
"example": "true"
},
{
"name": "zoneC",
"type": "boolean",
"title": {
"en": "Alarm zone C state"
},
"example": "true"
}
],
"args": [
{
"name": "device",
"type": "device",
"filter": "driver_id=protexial_alarm"
}
],
"id": "alarm_zone_state_changed"
},
{
"id": "command_complete",
"deprecated": true,
"title": {
"en": "A command completed",
"nl": "Een opdracht voltooid",
"da": "En kommando afsluttet",
"de": "Ein Befehl ausgeführt",
"es": "Un comando completado",
"fr": "Une commande terminée",
"it": "Un comando completato",
"no": "En kommando fullført",
"sv": "Ett kommando slutfört",
"pl": "Polecenie wykonane",
"ru": "Команда выполнена",
"ko": "명령어가 완료되었습니다"
},
"titleFormatted": {
"en": "A command completed on device [[device]]",
"nl": "Een opdracht voltooid op apparaat [[device]]",
"da": "Et kommando afsluttet på enhed [[device]]",
"de": "Ein Befehl ausgeführt auf Gerät [[device]]",
"es": "Un comando completado en el dispositivo [[device]]",
"fr": "Commande terminée sur l'appareil [[device]]",
"it": "Un comando completato su dispositivo [[device]]",
"no": "En kommando fullført på enhet [[device]]",
"sv": "Ett kommando slutfört på enhet [[device]]",
"pl": "Polecenie wykonane na urządzeniu [[device]]",
"ru": "Команда выполнена на устройстве [[device]]",
"ko": "장치 [[device]]에서 명령어가 완료되었습니다"
},
"platforms": [
"local",
"cloud"
],
"connectivity": [
"cloud"
],
"tokens": [
{
"name": "state",
"type": "boolean",
"title": {
"en": "Successful",
"nl": "Succesvol",
"da": "Succesfuld",
"de": "Erfolgreich",
"es": "Exitoso",
"fr": "Réussi",
"it": "Riuscito",
"no": "Vellykket",
"sv": "Lyckad",
"pl": "Udany",
"ru": "Успешно",
"ko": "성공적인"
},
"example": "true"
},
{
"name": "name",
"type": "string",
"title": {
"en": "Command Name",
"nl": "Opdrachtnaam",
"da": "Kommando Navn",
"de": "Befehlname",
"es": "Nombre del Comando",
"fr": "Nom de la Commande",
"it": "Nome Comando",
"no": "Kommando Navn",
"sv": "Kommando Namn",
"pl": "Nazwa Polecenia",
"ru": "Название команды",
"ko": "명령어 이름"
}
}
],
"args": [
{
"name": "device",
"type": "device",
"title": {
"en": "Device",
"nl": "Apparaat",
"da": "Enhed",
"de": "Gerät",
"es": "Dispositivo",
"fr": "Appareil",
"it": "Dispositivo",
"no": "Enhet",
"sv": "Enhet",
"pl": "Urządzenie",
"ru": "Устройство",
"ko": "장치"
}
}
]
},
{
"id": "contact_has_changed",
"title": {
"en": "The state of the opening detector has changed",
"nl": "De staat van de openingsmelder is veranderd",
"da": "Åbningsdetektorens tilstand er ændret",
"de": "Der Zustand des Öffnungsmelders hat sich geändert",
"es": "El estado del detector de apertura ha cambiado",
"fr": "L'état du détecteur d'ouverture a changé",
"it": "Lo stato del rilevatore di apertura è cambiato",
"no": "Tilstanden til åpningsdetektoren har endret seg",
"sv": "Öppningsdetektorns status har ändrats",
"pl": "Stan czujnika otwarcia uległ zmianie",
"ru": "Состояние датчика открытия изменилось",
"ko": "개폐 감지기의 상태가 변경되었습니다"
},
"tokens": [
{
"name": "isOpen",
"type": "boolean",
"title": {
"en": "is open?",
"nl": "is geopend?",
"da": "er åben?",
"de": "ist offen?",
"es": "está abierto?",
"fr": "est-il ouvert?",
"it": "è aperto?",
"no": "er åpen?",
"sv": "är öppen?",
"pl": "jest otwarty?",
"ru": "открыто?",
"ko": "열려 있습니까?"
},
"example": "open"
}
],
"args": [
{
"name": "device",
"type": "device",
"filter": "driver_id=enocean_window_handle|io_opening_detector|one_alarm"
}
]
},
{
"id": "device_command_complete",
"title": {
"en": "A command completed",
"nl": "Een opdracht voltooid",
"da": "En kommando fuldført",
"de": "Ein Befehl abgeschlossen",
"es": "Un comando completado",
"fr": "Une commande terminée",
"it": "Un comando completato",
"no": "En kommando fullført",
"sv": "Ett kommando slutfört",
"pl": "Polecenie zakończone",
"ru": "Команда выполнена",
"ko": "명령이 완료됨"
},
"tokens": [
{
"name": "state",
"type": "boolean",
"title": {
"en": "Successful",
"nl": "Succesvol",
"da": "Vellykket",
"de": "Erfolgreich",
"es": "Exitoso",
"fr": "Réussi",
"it": "Riuscito",
"no": "Vellykket",
"sv": "Lyckad",
"pl": "Udany",
"ru": "Успешный",
"ko": "성공"
},
"example": "true"
},
{
"name": "name",
"type": "string",
"title": {
"en": "Command Name",
"nl": "Opdrachtnaam",
"da": "Kommando Navn",
"de": "Befehlsname",
"es": "Nombre del Comando",
"fr": "Nom de la Commande",
"it": "Nome del Comando",
"no": "Kommandonavn",
"sv": "Kommando Namn",
"pl": "Nazwa polecenia",
"ru": "Имя команды",
"ko": "명령 이름"
}
}
],
"args": [
{
"name": "device",
"type": "device",
"filter": "driver_id=io_exterior_venetian_blind|io_garage_door|io_garage_door_partial|io_horizontal_awning|io_pergola|io_roller_shutter|io_roller_shutter_quiet|io_sliding_gate|io_velux_interior_blind|io_velux_roller_shutter|io_velux_roof_window|io_vertical_exterior_blind|io_vertical_interior_blind|rts_gate_opener|rts_horizontal_awning|rts_interior_blind|rts_interior_curtain|rts_interior_venetian_blind"
}
]
},
{
"id": "lock_state_changed",
"title": {
"en": "The lock state changed",
"nl": "De vergrendelingsstatus is gewijzigd",
"da": "Låsestatus ændret",
"de": "Der Sperrzustand hat sich geändert",
"es": "El estado de bloqueo cambió",
"fr": "L'état de verrouillage a changé",
"it": "Lo stato della serratura è cambiato",
"no": "Låsestatusen endret",
"sv": "Låstillståndet har ändrats",
"pl": "Stan blokady został zmieniony",
"ru": "Состояние замка изменилось",
"ko": "잠금 상태가 변경되었습니다"
},
"tokens": [
{
"name": "lock_state",
"type": "string",
"title": {
"en": "Lock state",
"nl": "Staat vergrendelen",
"da": "Låsestatus",
"de": "Sperrzustand",
"es": "Estado de bloqueo",
"fr": "État de verrouillage",
"it": "Stato della serratura",
"no": "Låsestatus",
"sv": "Låstillstånd",
"pl": "Stan blokady",
"ru": "Состояние замка",
"ko": "잠금 상태"
},
"example": "wind"
}
],
"args": [
{
"name": "device",
"type": "device",
"filter": "driver_id=io_horizontal_awning|io_vertical_exterior_blind|io_velux_roof_window"
}
]
},
{
"title": {
"en": "The pedestrian state changed",
"nl": "De voetgangersstatus is gewijzigd",
"da": "Fodgængerens tilstand ændret sig",
"de": "Der Fußgängerstatus hat sich geändert",
"es": "El estado del peatón cambió",
"fr": "L'état du piéton a changé",
"it": "Lo stato del pedone è cambiato",
"no": "Fotgjengertilstanden har endret seg",
"sv": "Gångtrafikantens tillstånd har ändrats",
"pl": "Stan pieszego się zmienił",
"ru": "Состояние пешехода изменилось",
"ko": "보행자 상태가 변경되었습니다"
},
"tokens": [
{
"name": "pedestrian",
"type": "boolean",
"title": {
"en": "At Pedestrian Position",
"nl": "Op Voetgangerspositie",
"da": "Ved fodgængerposition",
"de": "An der Fußgängerposition",
"es": "En Posición Peatonal",
"fr": "À la position piéton",
"it": "Alla posizione pedonale",
"no": "Ved fotgjengerposisjon",
"sv": "Vid gångtrafikantens position",
"pl": "Na pozycji pieszego",
"ru": "На позиции пешехода",
"ko": "보행자 위치에서"
}
}
],
"args": [
{
"name": "device",
"type": "device",
"filter": "driver_id=i0_gate|io_sliding_gate"
}
],
"id": "pedestrian_changed"
},
{
"id": "tilt_has_changed",
"title": {
"en": "The state of the tilt has changed",
"nl": "De staat van de kanteling is gewijzigd",
"fr": "L'état de l'inclinaison a changé",
"de": "Der Zustand der Neigung hat sich geändert"
},
"tokens": [
{
"name": "isTilted",
"type": "boolean",
"title": {
"en": "is tilted?",
"nl": "is gekanteld?",
"fr": "est incliné ?",
"de": "ist geneigt?"
},
"example": "tilted"
}
],
"args": [
{
"name": "device",
"type": "device",
"filter": "driver_id=enocean_window_handle"
}
]
},
{
"id": "window_open_has_changed",
"title": {
"en": "The state of the window has changed",
"nl": "De status van het venster is gewijzigd",
"fr": "L'état de la fenêtre a changé",
"de": "Der Zustand des Fensters hat sich geändert"
},
"tokens": [
{
"name": "isWindowOpen",
"type": "boolean",
"title": {
"en": "is open?",
"nl": "is geopend?",
"fr": "est ouvert?",
"de": "ist offen?"
},
"example": "open"
}
],
"args": [
{
"name": "device",
"type": "device",
"filter": "driver_id=enocean_window_handle"
}
]
},
{
"id": "windowcoverings_tilt_changed",
"title": {
"en": "The tilt changed",
"nl": "De kanteling is veranderd",
"da": "Vippen ændrede sig",
"de": "Die Neigung hat sich geändert",
"es": "El ángulo cambió",
"fr": "L'inclinaison a changé",
"it": "L'inclinazione è cambiata",
"no": "Vippen endret seg",
"sv": "Tiltningen ändrades",
"pl": "Kąt nachylenia się zmienił",
"ru": "Угол наклона изменился",
"ko": "기울기가 변경되었습니다"
},
"tokens": [
{
"name": "windowcoverings_tilt",
"type": "number",
"title": {
"en": "Tilt",
"nl": "Kantelen",
"da": "Vip",
"de": "Neigung",
"es": "Ángulo",
"fr": "Inclinaison",
"it": "Inclinazione",
"no": "Vippe",
"sv": "Tilt",
"pl": "Nachylenie",
"ru": "Наклон",
"ko": "기울기"
},
"example": 0.5
}
],
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=io_exterior_venetian_blind"
}
]
},
{
"id": "heating_level2_state_changed",
"title": {
"en": "The heating mode changed",
"fr": "Le mode de chauffage a changé",
"de": "Der Heizmodus hat sich geändert",
"nl": "De verwarmingsmodus is gewijzigd"
},
"titleFormatted": {
"en": "The heating mode changed to [[heating_level2_state]]",
"fr": "Le mode de chauffage a changé en [[heating_level2_state]]",
"de": "Der Heizmodus hat sich zu [[heating_level2_state]] geändert",
"nl": "De verwarmingsmodus is gewijzigd naar [[heating_level2_state]]"
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=io_heating_interface"
},
{
"name": "heating_level2_state",
"type": "dropdown",
"title": {
"en": "Heating Mode",
"fr": "Mode de chauffage",
"de": "Heizmodus",
"nl": "Verwarmingsmodus"
},
"values": [
{
"id": "comfort",
"title": {
"en": "Comfort",
"fr": "Confort",
"de": "Komfort",
"nl": "Comfort"
}
},
{
"id": "eco",
"title": {
"en": "Eco",
"fr": "Economique",
"de": "Eco",
"nl": "Eco"
}
},
{
"id": "frostprotection",
"title": {
"en": "Frost Protection",
"fr": "Protection contre le gel",
"de": "Frostschutz",
"nl": "Vorstbescherming"
}
},
{
"id": "off",
"title": {
"en": "Off",
"fr": "Éteint",
"de": "Aus",
"nl": "Uit"
}
}
]
}
]
},
{
"id": "change_luminance_more_than",
"title": {
"en": "The luminance is more than",
"nl": "De lichtsterkte is meer dan",
"fr": "La luminance est supérieure à",
"de": "Die Helligkeit ist mehr als"
},
"titleFormatted": {
"en": "The luminance is more than [[luminance]]",
"nl": "De lichtsterkte is meer dan [[luminance]]",
"fr": "La luminance est supérieure à [[luminance]]",
"de": "Die Helligkeit ist mehr als [[luminance]]"
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=io_light_sensor"
},
{
"name": "luminance",
"type": "number",
"title": {
"en": "Luminance",
"fr": "Luminance",
"de": "Helligkeit",
"nl": "Lichtsterkte"
},
"placeholder": {
"en": "in Lux",
"fr": "en Lux",
"de": "in Lux",
"nl": "in Lux"
}
}
]
},
{
"id": "change_luminance_less_than",
"title": {
"en": "The luminance is less than",
"nl": "De lichtsterkte is minder dan",
"fr": "La luminance est inférieure à",
"de": "Die Helligkeit ist weniger als"
},
"titleFormatted": {
"en": "The luminance is less than [[luminance]]",
"nl": "De lichtsterkte is minder dan [[luminance]]",
"fr": "La luminance est inférieure à [[luminance]]",
"de": "Die Helligkeit ist weniger als [[luminance]]"
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=io_light_sensor"
},
{
"name": "luminance",
"type": "number",
"title": {
"en": "Luminance",
"fr": "Luminance",
"de": "Helligkeit",
"nl": "Lichtsterkte"
},
"placeholder": {
"en": "in Lux",
"fr": "en Lux",
"de": "in Lux",
"nl": "in Lux"
}
}
]
},
{
"id": "change_luminance_between",
"title": {
"en": "The luminance is between",
"nl": "De lichtsterkte is tussen",
"fr": "La luminance est comprise entre",
"de": "Die Helligkeit liegt zwischen"
},
"titleFormatted": {
"en": "The luminance is between [[luminance_from]] and [[luminance_to]]",
"nl": "De lichtsterkte is tussen [[luminance_from]] en [[luminance_to]]",
"fr": "La luminance est comprise entre [[luminance_from]] et [[luminance_to]]",
"de": "Die Helligkeit liegt zwischen [[luminance_from]] und [[luminance_to]]"
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=io_light_sensor"
},
{
"name": "luminance_from",
"type": "number",
"title": {
"en": "Luminance From",
"fr": "Luminance De",
"de": "Helligkeit von",
"nl": "Lichtsterkte vanaf"
},
"placeholder": {
"en": "in Lux",
"fr": "en Lux",
"de": "in Lux",
"nl": "in Lux"
}
},
{
"name": "luminance_to",
"type": "number",
"title": {
"en": "Luminance To",
"fr": "Luminance À",
"de": "Helligkeit bis",
"nl": "Lichtsterkte tot"
},
"placeholder": {
"en": "in Lux",
"fr": "en Lux",
"de": "in Lux",
"nl": "in Lux"
}
}
]
},
{
"id": "motion_has_changed",
"title": {
"en": "The state of the motion detector has changed",
"nl": "De status van de bewegingsdetector is veranderd",
"da": "Tilstanden af bevægelsesdetektoren har ændret sig",
"de": "Der Status des Bewegungsmelders hat sich geändert",
"es": "El estado del detector de movimiento ha cambiado",
"fr": "L'état du détecteur de mouvement a changé",
"it": "Lo stato del rilevatore di movimento è cambiato",
"no": "Tilstanden til bevegelsesdetektoren har endret seg",
"sv": "Rörelsedetektorns tillstånd har ändrats",
"pl": "Stan czujnika ruchu uległ zmianie",
"ru": "Состояние датчика движения изменилось",
"ko": "동작 감지기의 상태가 변경되었습니다"
},
"tokens": [
{
"name": "isMotion",
"type": "boolean",
"title": {
"en": "is motion?",
"nl": "is er beweging?",
"da": "er der bevægelse?",
"de": "ist Bewegung?",
"es": "¿hay movimiento?",
"fr": "y a-t-il un mouvement ?",
"it": "c'è movimento?",
"no": "er det bevegelse?",
"sv": "är det rörelse?",
"pl": "czy jest ruch?",
"ru": "есть движение?",
"ko": "동작이 있나요?"
},
"example": "motion"
}
],
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=io_occupancy_detector"
}
]
},
{
"id": "remote_state_changed",
"title": {
"en": "The remote state changed",
"nl": "De remotesituatie is veranderd",
"da": "Den eksterne tilstand er ændret",
"de": "Der Fernzustand hat sich geändert",
"es": "El estado remoto cambió",
"fr": "L'état distant a changé",
"it": "Lo stato remoto è cambiato",
"no": "Den eksterne tilstanden endret seg",
"sv": "Det fjärrstyrda tillståndet har ändrats",
"pl": "Zdalny stan zmienił się",
"ru": "Удалённое состояние изменилось",
"ko": "원격 상태가 변경되었습니다."
},
"tokens": [
{
"name": "remote_state",
"type": "string",
"title": {
"en": "New State",
"nl": "Nieuwe staat",
"da": "Ny tilstand",
"de": "Neuer Zustand",
"es": "Nuevo Estado",
"fr": "Nouvel État",
"it": "Nuovo stato",
"no": "Ny tilstand",
"sv": "Nytt tillstånd",
"pl": "Nowy stan",
"ru": "Новое состояние",
"ko": "새로운 상태"
},
"example": "up"
}
],
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=io_open_close_remote"
}
]
},
{
"id": "remote_state_changed_to",
"title": {
"en": "The remote state changed to",
"nl": "De remotesituatie is veranderd in",
"da": "Den eksterne tilstand blev ændret til",
"de": "Der Fernzustand hat sich geändert zu",
"es": "El estado remoto cambió a",
"fr": "L'état distant a changé pour",
"it": "Lo stato remoto è cambiato in",
"no": "Den eksterne tilstanden endret seg til",
"sv": "Det fjärrstyrda tillståndet ändrades till",
"pl": "Zdalny stan zmienił się na",
"ru": "Удалённое состояние изменилось на",
"ko": "원격 상태가 다음으로 변경되었습니다."
},
"titleFormatted": {
"en": "The remote state changed to [[expected_state]]",
"nl": "De remotesituatie is veranderd in [[expected_state]]",
"da": "Den eksterne tilstand blev ændret til [[expected_state]]",
"de": "Der Fernzustand hat sich geändert zu [[expected_state]]",
"es": "El estado remoto cambió a [[expected_state]]",
"fr": "L'état distant a changé pour [[expected_state]]",
"it": "Lo stato remoto è cambiato in [[expected_state]]",
"no": "Den eksterne tilstanden endret seg til [[expected_state]]",
"sv": "Det fjärrstyrda tillståndet ändrades till [[expected_state]]",
"pl": "Zdalny stan zmienił się na [[expected_state]]",
"ru": "Удалённое состояние изменилось на [[expected_state]]",
"ko": "원격 상태가 [[expected_state]]로 변경되었습니다."
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=io_open_close_remote"
},
{
"type": "dropdown",
"name": "expected_state",
"title": {
"en": "Expected State",
"nl": "Verwachte staat",
"da": "Forventet tilstand",
"de": "Erwarteter Zustand",
"es": "Estado esperado",
"fr": "État attendu",
"it": "Stato previsto",
"no": "Forventet tilstand",
"sv": "Förväntat tillstånd",
"pl": "Oczekiwany stan",
"ru": "Ожидаемое состояние",
"ko": "예상 상태"
},
"values": [
{
"id": "up",
"label": {
"en": "Up",
"nl": "Omhoog",
"da": "Op",
"de": "Oben",
"es": "Arriba",
"fr": "Haut",
"it": "Su",
"no": "Opp",
"sv": "Upp",
"pl": "W górę",
"ru": "Вверх",
"ko": "위로"
}
},
{
"id": "down",
"label": {
"en": "Down",
"nl": "Omlaag",
"da": "Ned",
"de": "Unten",