-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
1788 lines (1788 loc) · 44.8 KB
/
Copy pathapp.json
File metadata and controls
1788 lines (1788 loc) · 44.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"_comment": "This file is generated. Please edit .homeycompose/app.json instead.",
"id": "com.barelysufficient.flexit",
"version": "1.11.1",
"compatibility": ">=12.3.0",
"platforms": [
"local"
],
"sdk": 3,
"name": {
"en": "Flexit GO"
},
"description": {
"en": "Better indoor climate"
},
"images": {
"small": "/assets/images/small.png",
"large": "/assets/images/large.png",
"xlarge": "/assets/images/xlarge.png"
},
"brandColor": "#23465F",
"category": "climate",
"tags": {
"en": [
"flexit",
"nordic",
"ventilation",
"bacnet"
]
},
"author": {
"name": "Ole Markus With",
"email": "olemarkus@gmail.com"
},
"homepage": "https://github.com/olemarkus/com.barelysufficient.flexit",
"source": "https://github.com/olemarkus/com.barelysufficient.flexit",
"bugs": {
"url": "https://github.com/olemarkus/com.barelysufficient.flexit/issues"
},
"support": "https://github.com/olemarkus/com.barelysufficient.flexit/issues",
"homeyCommunityTopicId": 151048,
"contributing": {
"donate": {
"githubSponsors": {
"username": "olemarkus"
}
}
},
"flow": {
"triggers": [
{
"title": {
"en": "Dehumidification activated"
},
"titleFormatted": {
"en": "Dehumidification activated"
},
"hint": {
"en": "Triggers when dehumidification activates."
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=nordic|nordic-cloud"
}
],
"id": "dehumidification_activated"
},
{
"title": {
"en": "Dehumidification deactivated"
},
"titleFormatted": {
"en": "Dehumidification deactivated"
},
"hint": {
"en": "Triggers when dehumidification deactivates."
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=nordic|nordic-cloud"
}
],
"id": "dehumidification_deactivated"
},
{
"title": {
"en": "Extract fan setpoint changed"
},
"titleFormatted": {
"en": "Extract fan setpoint changed"
},
"hint": {
"en": "Triggers when the active extract fan setpoint changes. The token value is a percentage in the range 0 to 100."
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=nordic|nordic-cloud"
}
],
"tokens": [
{
"name": "setpoint_percent",
"type": "number",
"title": {
"en": "Setpoint"
}
}
],
"id": "extract_fan_setpoint_changed"
},
{
"title": {
"en": "Free cooling activated"
},
"titleFormatted": {
"en": "Free cooling activated"
},
"hint": {
"en": "Triggers when free cooling activates."
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=nordic|nordic-cloud"
}
],
"id": "free_cooling_activated"
},
{
"title": {
"en": "Free cooling deactivated"
},
"titleFormatted": {
"en": "Free cooling deactivated"
},
"hint": {
"en": "Triggers when free cooling deactivates."
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=nordic|nordic-cloud"
}
],
"id": "free_cooling_deactivated"
},
{
"title": {
"en": "Heating coil turned off"
},
"titleFormatted": {
"en": "Heating coil turned off"
},
"hint": {
"en": "Triggers when the electric heating coil changes to off."
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=nordic|nordic-cloud"
}
],
"id": "heating_coil_turned_off"
},
{
"title": {
"en": "Heating coil turned on"
},
"titleFormatted": {
"en": "Heating coil turned on"
},
"hint": {
"en": "Triggers when the electric heating coil changes to on."
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=nordic|nordic-cloud"
}
],
"id": "heating_coil_turned_on"
},
{
"title": {
"en": "Supply fan setpoint changed"
},
"titleFormatted": {
"en": "Supply fan setpoint changed"
},
"hint": {
"en": "Triggers when the active supply fan setpoint changes. The token value is a percentage in the range 0 to 100."
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=nordic|nordic-cloud"
}
],
"tokens": [
{
"name": "setpoint_percent",
"type": "number",
"title": {
"en": "Setpoint"
}
}
],
"id": "supply_fan_setpoint_changed"
}
],
"conditions": [
{
"title": {
"en": "Dehumidification is active"
},
"titleFormatted": {
"en": "Dehumidification is active"
},
"hint": {
"en": "Checks whether dehumidification is active."
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=nordic|nordic-cloud"
}
],
"id": "dehumidification_is_active"
},
{
"title": {
"en": "Free cooling is active"
},
"titleFormatted": {
"en": "Free cooling is active"
},
"hint": {
"en": "Checks whether free cooling is active."
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=nordic|nordic-cloud"
}
],
"id": "free_cooling_is_active"
},
{
"title": {
"en": "Heating coil is turned on"
},
"titleFormatted": {
"en": "Heating coil is turned on"
},
"hint": {
"en": "Checks whether the electric heating coil is currently on."
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=nordic|nordic-cloud"
}
],
"id": "heating_coil_is_on"
}
],
"actions": [
{
"title": {
"en": "Activate temporary high"
},
"titleFormatted": {
"en": "Activate temporary high"
},
"hint": {
"en": "Starts a temporary high (boost) that runs for the saved high duration and then returns to the previous mode, like pressing the high button on the unit. Set the duration with the \"Set high duration\" action."
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=nordic|nordic-cloud"
}
],
"id": "activate_temporary_high"
},
{
"title": {
"en": "Set fan profile for mode"
},
"titleFormatted": {
"en": "Set [[mode]] fan profile to supply [[supply_percent]]% and exhaust [[exhaust_percent]]%"
},
"hint": {
"en": "Updates the saved supply and exhaust fan values in percent for the selected mode on the unit."
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=nordic|nordic-cloud"
},
{
"type": "dropdown",
"name": "mode",
"title": {
"en": "Mode"
},
"values": [
{
"id": "home",
"label": {
"en": "Home"
}
},
{
"id": "away",
"label": {
"en": "Away"
}
},
{
"id": "high",
"label": {
"en": "High"
}
},
{
"id": "fireplace",
"label": {
"en": "Fireplace"
}
},
{
"id": "cooker",
"label": {
"en": "Cooker"
}
}
]
},
{
"name": "supply_percent",
"type": "number",
"title": {
"en": "Supply fan"
},
"min": 30,
"max": 100,
"step": 1
},
{
"name": "exhaust_percent",
"type": "number",
"title": {
"en": "Exhaust fan"
},
"min": 30,
"max": 100,
"step": 1
}
],
"id": "set_fan_profile_mode"
},
{
"title": {
"en": "Set fireplace duration"
},
"titleFormatted": {
"en": "Set fireplace duration to [[minutes]] minutes"
},
"hint": {
"en": "Updates the saved fireplace ventilation runtime in minutes on the unit."
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=nordic|nordic-cloud"
},
{
"name": "minutes",
"type": "number",
"title": {
"en": "Duration"
},
"min": 1,
"max": 360,
"step": 1
}
],
"id": "set_fireplace_duration"
},
{
"title": {
"en": "Set high duration"
},
"titleFormatted": {
"en": "Set high duration to [[minutes]] minutes"
},
"hint": {
"en": "Updates the saved high (boost) ventilation runtime in minutes on the unit. Use 0 to keep high mode running until it is changed."
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=nordic|nordic-cloud"
},
{
"name": "minutes",
"type": "number",
"title": {
"en": "Duration"
},
"min": 0,
"max": 360,
"step": 1
}
],
"id": "set_high_duration"
},
{
"title": {
"en": "Toggle heating coil on or off"
},
"titleFormatted": {
"en": "Toggle heating coil on or off"
},
"hint": {
"en": "Toggles the electric heating coil state on supported units."
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=nordic|nordic-cloud"
}
],
"id": "toggle_heating_coil_onoff"
},
{
"title": {
"en": "Turn heating coil off"
},
"titleFormatted": {
"en": "Turn heating coil off"
},
"hint": {
"en": "Turns off the electric heating coil on supported units."
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=nordic|nordic-cloud"
}
],
"id": "turn_heating_coil_off"
},
{
"title": {
"en": "Turn heating coil on"
},
"titleFormatted": {
"en": "Turn heating coil on"
},
"hint": {
"en": "Turns on the electric heating coil on supported units."
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=nordic|nordic-cloud"
}
],
"id": "turn_heating_coil_on"
}
]
},
"drivers": [
{
"name": {
"en": "Nordic Local"
},
"class": "airtreatment",
"images": {
"small": "/drivers/nordic/assets/images/small.png",
"large": "/drivers/nordic/assets/images/large.png",
"xlarge": "/drivers/nordic/assets/images/xlarge.png"
},
"capabilities": [
"measure_temperature",
"measure_temperature.outdoor",
"measure_temperature.exhaust",
"measure_temperature.extract",
"target_temperature",
"measure_humidity",
"dehumidification_active",
"free_cooling_active",
"measure_power",
"fan_mode",
"measure_motor_rpm",
"measure_motor_rpm.extract",
"measure_fan_speed_percent",
"measure_fan_speed_percent.extract",
"measure_fan_setpoint_percent",
"measure_fan_setpoint_percent.extract",
"measure_hepa_filter",
"button.reset_filter"
],
"capabilitiesOptions": {
"measure_humidity": {
"title": {
"en": "Extract air humidity"
}
},
"dehumidification_active": {
"title": {
"en": "Dehumidification active"
}
},
"free_cooling_active": {
"title": {
"en": "Free cooling active"
}
},
"measure_power": {
"title": {
"en": "Heating coil power usage"
}
},
"measure_temperature": {
"title": {
"en": "Supply air temperature"
}
},
"measure_temperature.outdoor": {
"title": {
"en": "Outdoor air temperature"
}
},
"measure_temperature.exhaust": {
"title": {
"en": "Exhaust air temperature"
}
},
"measure_temperature.extract": {
"title": {
"en": "Extract air temperature"
}
},
"target_temperature": {
"title": {
"en": "Supply air target temperature"
},
"min": 10,
"max": 30,
"step": 0.5
},
"measure_motor_rpm": {
"title": {
"en": "Supply Fan RPM"
}
},
"measure_motor_rpm.extract": {
"title": {
"en": "Extract Fan RPM"
}
},
"measure_fan_speed_percent": {
"title": {
"en": "Supply Fan Speed"
},
"units": {
"en": "%"
}
},
"measure_fan_speed_percent.extract": {
"title": {
"en": "Extract Fan Speed"
},
"units": {
"en": "%"
}
},
"measure_fan_setpoint_percent": {
"title": {
"en": "Supply fan setpoint"
},
"units": {
"en": "%"
}
},
"measure_fan_setpoint_percent.extract": {
"title": {
"en": "Extract fan setpoint"
},
"units": {
"en": "%"
}
},
"measure_hepa_filter": {
"title": {
"en": "Filter Life Remaining"
},
"units": {
"en": "%"
}
},
"button.reset_filter": {
"maintenanceAction": true,
"title": {
"en": "Reset filter timer"
},
"desc": {
"en": "Use only after replacing both filters."
}
},
"fan_mode": {
"values": [
{
"id": "home",
"title": {
"en": "Home"
}
},
{
"id": "away",
"title": {
"en": "Away"
}
},
{
"id": "high",
"title": {
"en": "High"
}
},
{
"id": "fireplace",
"title": {
"en": "Fireplace"
}
},
{
"id": "cooker",
"title": {
"en": "Cooker Hood"
}
}
]
}
},
"platforms": [
"local"
],
"pair": [
{
"id": "list_devices",
"template": "list_devices",
"navigation": {
"next": "add_devices"
}
},
{
"id": "add_devices",
"template": "add_devices"
}
],
"settings": [
{
"type": "group",
"label": {
"en": "Filter settings"
},
"children": [
{
"id": "filter_change_interval_months",
"type": "number",
"label": {
"en": "Filter change interval"
},
"hint": {
"en": "Filter replacement interval in months (Flexit GO style)."
},
"units": {
"en": "months"
},
"value": 6,
"min": 3,
"max": 12,
"step": 1
}
]
},
{
"type": "group",
"label": {
"en": "Temperature setpoints"
},
"children": [
{
"id": "target_temperature_home",
"type": "number",
"label": {
"en": "Target temperature, home"
},
"hint": {
"en": "Used in Home, High, Fireplace, and Cooker operation."
},
"units": {
"en": "degC"
},
"value": 20,
"min": 10,
"max": 30,
"step": 0.5
},
{
"id": "target_temperature_away",
"type": "number",
"label": {
"en": "Target temperature, away"
},
"hint": {
"en": "Used in Away operation."
},
"units": {
"en": "degC"
},
"value": 18,
"min": 10,
"max": 30,
"step": 0.5
}
]
},
{
"type": "group",
"label": {
"en": "Free cooling"
},
"children": [
{
"id": "free_cooling_enabled",
"type": "checkbox",
"label": {
"en": "Enable free cooling"
},
"value": false
},
{
"id": "free_cooling_extract_temp_setpoint",
"type": "number",
"label": {
"en": "Free cooling temperature setpoint"
},
"units": {
"en": "degC"
},
"value": 22,
"min": 10,
"max": 30,
"step": 0.5
},
{
"id": "free_cooling_outside_temp_limit",
"type": "number",
"label": {
"en": "Outside temperature limit"
},
"units": {
"en": "degC"
},
"value": 18,
"min": 10,
"max": 30,
"step": 0.5
},
{
"id": "free_cooling_min_on_time_seconds",
"type": "number",
"label": {
"en": "Minimum on-time"
},
"units": {
"en": "sec"
},
"value": 600,
"min": 0,
"max": 18000,
"step": 1
}
]
},
{
"type": "group",
"label": {
"en": "Temporary ventilation"
},
"children": [
{
"id": "fireplace_duration_minutes",
"type": "number",
"label": {
"en": "Fireplace duration"
},
"hint": {
"en": "Duration used when Fireplace mode is activated."
},
"units": {
"en": "min"
},
"value": 10,
"min": 1,
"max": 360,
"step": 1
},
{
"id": "high_duration_minutes",
"type": "number",
"label": {
"en": "High duration"
},
"hint": {
"en": "Duration used when High mode is activated. Use 0 to keep it running until changed."
},
"units": {
"en": "min"
},
"value": 0,
"min": 0,
"max": 360,
"step": 1
}
]
},
{
"type": "group",
"label": {
"en": "Fan setpoints"
},
"children": [
{
"type": "group",
"label": {
"en": "Fan setpoint, home"
},
"children": [
{
"id": "fan_profile_home_supply",
"type": "number",
"label": {
"en": "Supply fan"
},
"units": {
"en": "%"
},
"value": 80,
"min": 56,
"max": 100,
"step": 1
},
{
"id": "fan_profile_home_exhaust",
"type": "number",
"label": {
"en": "Exhaust fan"
},
"units": {
"en": "%"
},
"value": 79,
"min": 55,
"max": 99,
"step": 1
}
]
},
{
"type": "group",
"label": {
"en": "Fan setpoint, away"
},
"children": [
{
"id": "fan_profile_away_supply",
"type": "number",
"label": {
"en": "Supply fan"
},
"units": {
"en": "%"
},
"value": 56,
"min": 30,
"max": 80,
"step": 1
},
{
"id": "fan_profile_away_exhaust",
"type": "number",
"label": {
"en": "Exhaust fan"
},
"units": {
"en": "%"
},
"value": 55,
"min": 30,
"max": 79,
"step": 1
}
]
},
{
"type": "group",
"label": {
"en": "Fan setpoint, high"
},
"children": [
{
"id": "fan_profile_high_supply",
"type": "number",
"label": {
"en": "Supply fan"
},
"units": {
"en": "%"
},
"value": 100,
"min": 80,
"max": 100,
"step": 1
},
{
"id": "fan_profile_high_exhaust",
"type": "number",
"label": {
"en": "Exhaust fan"
},
"units": {
"en": "%"
},
"value": 99,
"min": 79,
"max": 100,
"step": 1
}
]
},
{
"type": "group",
"label": {
"en": "Fan setpoint, fireplace"
},
"children": [
{
"id": "fan_profile_fireplace_supply",
"type": "number",
"label": {
"en": "Supply fan"
},
"units": {
"en": "%"
},
"value": 90,
"min": 30,
"max": 100,
"step": 1
},
{
"id": "fan_profile_fireplace_exhaust",
"type": "number",
"label": {
"en": "Exhaust fan"
},
"units": {
"en": "%"
},
"value": 50,
"min": 30,
"max": 100,
"step": 1