alifnd9 commited on
Commit
c243df7
·
verified ·
1 Parent(s): 2917930

Create heater_smart_control.json

Browse files
Files changed (1) hide show
  1. heater_smart_control.json +32 -0
heater_smart_control.json ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "system": "smart_heater_ai",
3
+ "features": [
4
+ "room_temperature",
5
+ "humidity",
6
+ "occupancy",
7
+ "outside_temperature"
8
+ ],
9
+ "samples": [
10
+ {
11
+ "room_temperature": 18,
12
+ "humidity": 60,
13
+ "occupancy": true,
14
+ "outside_temperature": 15,
15
+ "heater_action": "HIGH"
16
+ },
17
+ {
18
+ "room_temperature": 21,
19
+ "humidity": 55,
20
+ "occupancy": true,
21
+ "outside_temperature": 18,
22
+ "heater_action": "LOW"
23
+ },
24
+ {
25
+ "room_temperature": 24,
26
+ "humidity": 50,
27
+ "occupancy": false,
28
+ "outside_temperature": 20,
29
+ "heater_action": "OFF"
30
+ }
31
+ ]
32
+ }