-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
61 lines (61 loc) · 939 Bytes
/
config.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
{
"wifi":[
["SSID1", "Password1"],
["SSID2", "Password2"],
["SSID3", "Password3"]
],
"ap":{
"ssid":"ESP8266_AP",
"password":"put_password_here"
},
"interface": {
"ip":"(192,168,1,10)",
"subnet":"(255,255,255,0)",
"gateway":"(192,168,1,1)",
"dns1":"(1,1,1,1)",
"dns2":"(1,0,0,1)"
},
"server_port":80,
"mdns":"esp8266",
"ota":{
"user":"",
"password":"",
"port":8266,
"led_interval":100
},
"mqtt":{
"server":"",
"port":1883,
"topic":[
"device_status",
"lamp"
],
"id":"esp8266",
"user":"",
"password":""
},
"rf":{
"rf1":{
"on":21,
"off":20
},
"rf2":{
"on":16405,
"off":16404
},
"rf3":{
"on":4117,
"off":4116
}
},
"timer":{
"dht_interval":2000,
"fade_delay":6
},
"lamp":{
"hue":330,
"sat":75,
"lvl":0,
"strobe_frequency":12
}
}