-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.example.json
114 lines (114 loc) · 2.11 KB
/
config.example.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
{
"rooms": {
"living_room": {
"exhaust": 1,
"co2": "192.168.1.100",
"flow": {
"correction": 1.05,
"minimum": 0,
"maximum": 80,
"default": 20,
"low": 40,
"medium": 50,
"medium_high": 65,
"high": 75
}
},
"kitchen": {
"exhaust": 2,
"co2": "192.168.1.101",
"flow": {
"correction": 1.05,
"minimum": 0,
"maximum": 80,
"default": 20,
"low": 40,
"medium": 50,
"medium_high": 65,
"high": 75
}
},
"extractor": {
"exhaust": 3,
"flow": {
"correction": 1.05,
"minimum": 0,
"maximum": 100,
"default": 0,
"low": 40,
"medium": 50,
"medium_high": 65,
"high": 75
}
},
"toilet": {
"exhaust": 4,
"motion": 1,
"flow": {
"correction": 1.10,
"minimum": 0,
"maximum": 80,
"default": 0,
"low": 40,
"medium": 50,
"medium_high": 65,
"high": 75
}
},
"bathroom": {
"exhaust": 5,
"motion": 3,
"humidity": "RH bathroom 1 (%)",
"flow": {
"correction": 1.10,
"minimum": 10,
"maximum": 130,
"default": 0,
"low": 40,
"medium": 50,
"medium_high": 65,
"high": 75
}
}
},
"remote": {
"id": "kitchen",
"buttons": {
"high": {
"rooms": ["attic"],
"duration": 10800
},
"cook30": {
"rooms": ["extractor", "kitchen"],
"duration": 3600
},
"cook60": {
"rooms": ["extractor", "kitchen"],
"duration": 7200
},
"timer1": {
"rooms": ["kitchen", "living_room"],
"duration": 10800
}
}
},
"humidity": {
"high": 90,
"low": 75
},
"itho": {
"ip": "192.168.1.5",
"manual_id": 111,
"speed_id": 124,
"minimum_flow": 110,
"maximum_flow": 350
},
"metrics": {
"ip": "192.168.1.6",
"port": 8089
},
"hue": {
"ip": "192.168.1.7",
"user": "hunter2"
}
}