-
Notifications
You must be signed in to change notification settings - Fork 0
/
devices.json
103 lines (103 loc) · 2.64 KB
/
devices.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
{
"devices": [
{
"model": "gateway",
"name": "Mi Home Gateway",
"states": [
{
"name": "rgb",
"type": "integer"
},
{
"name": "illumination",
"type": "integer"
}
]
},
{
"model": "motion",
"name": "Motion Sensor",
"states": [
{
"name": "status",
"type": "enum",
"enum": [
"motion"
]
},
{
"name": "no_motion",
"type": "enum",
"enum": [
"120",
"180",
"300",
"600",
"1200",
"1800"
]
}
]
},
{
"model": "sensor_ht",
"name": "Temperature and Humidity Sensor",
"states": [
{
"name": "temperature",
"type": "string"
},
{
"name": "humidity",
"type": "string"
}
]
},
{
"model": "switch",
"name": "Wireless Switch",
"states": [
{
"name": "status",
"type": "enum",
"enum": [
"click",
"double_click",
"long_click_press",
"long_click_release"
]
}
]
},
{
"model": "remote.b1acn01",
"name": "Wireless Switch",
"states": [
{
"name": "status",
"type": "enum",
"enum": [
"click",
"double_click",
"long_click_press",
"long_click_release"
]
}
]
},
{
"model": "magnet",
"name": "Magnet Sensor",
"states": [
{
"name": "status",
"type": "enum",
"enum": [
"open",
"close"
]
}
]
}
]
}