-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.example.json
46 lines (46 loc) · 1.74 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
{
"bridge": {
"name": "Homebridge",
"username": "CC:22:3D:E3:CE:30",
"port": 51826,
"pin": "031-45-154"
},
"description": "This is an example configuration file for Arduino-based temperature and humidity sensor. You can use this as a template for creating your own configuration file containing devices you actually own.",
"accessories": [
],
"platforms": [
{
"platform": "Bluetooth",
"accessories": [
{
"name": "Arduino",
"address": "12:34:56:78:9A:BC",
"services": [
{
"name": "Humidity Sensor",
"type": "HumiditySensor",
"UUID": "10525F60-CF73-11E6-9598-F8E2251C9A69",
"characteristics": [
{
"type": "CurrentRelativeHumidity",
"UUID": "10525F61-CF73-11E6-9598-F8E2251C9A69"
}
]
},
{
"name": "Temperature Sensor",
"type": "TemperatureSensor",
"UUID": "F489CB00-C177-11E6-9598-9854249C9A66",
"characteristics": [
{
"type": "CurrentTemperature",
"UUID": "F489CB01-C177-11E6-9598-9854249C9A66"
}
]
}
]
}
]
}
]
}