-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathconfig-template.json
107 lines (107 loc) · 2.68 KB
/
config-template.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
{
"webserver": {
"host": "127.0.0.1",
"port": 8080
},
"zones": [
{"name":"Zone 1", "adjust":"sand", "pulse":40, "pause":20},
{"name":"Zone 2"},
{"name":"Zone 3"},
{"name":"Zone 4"},
{"name":"Zone 5"},
{"name":"Zone 6"},
{"name":"Zone 7"},
{"name":"Zone 8"},
{"name":"Zone 9"},
{"name":"Zone 10"},
{"name":"Zone 11"},
{"name":"Zone 12"},
{"name":"Zone 13"},
{"name":"Zone 14"},
{"name":"Zone 15"},
{"name":"Zone 16"}
],
"location": "home",
"zipcode": "83406",
"timezone": "America/Boise",
"raindelay": true,
"on": true,
"production": false,
"event": {"syslog": false, "cleanup": 90},
"calendars": [
{
"name":"example",
"format":"iCalendar",
"source":"http://somewhere",
"disabled":true
}
],
"weather": {
"enable":false,
"key":"your-weather-underground-key-here",
"raintrigger":"0.25",
"refresh":["5:01","21:03"],
"adjust":{
"enable":false,
"min":0,
"max":200,
"temperature":65,
"humidity":30,
"sensitivity":70
}
},
"wateringindex":{
"enable":true,
"provider":"waterdex",
"adjust":{"min":"31","max":"152"},
"refresh":["5:00","21:02"]
},
"seasons": [
{
"name":"wet",
"monthly":[true,true,true,true,false,false,false,false,false,false,true,true]
},
{
"name":"dry",
"monthly":[false,false,false,false,true,true,true,true,true,true,false,false]
}
],
"adjust": [
{
"name":"default",
"monthly":[33,50,67,83,83,83,100,83,50,50,50,33]
},
{
"name":"sand",
"monthly":[40,40,60,80,80,80,100,80,40,40,40,40]
}
],
"programs": [
{
"active":true,
"name":"Weekly",
"season":"wet",
"repeat":"weekly",
"start":"01:41",
"days":[true,true,true,true,true,true,true],
"zones":[
{"zone":1,"seconds":15},
{"zone":3,"seconds":10}
]
},
{
"active":true,
"name":"Daily",
"repeat":"daily",
"season":"dry",
"start":"01:41",
"date":"20140401",
"interval":2,
"options":{"append":true},
"zones":[
{"zone":1,"seconds":30},
{"zone":3,"seconds":20}
]
}
]
}