-
Notifications
You must be signed in to change notification settings - Fork 0
/
sample-config.json
48 lines (48 loc) · 1.35 KB
/
sample-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
{
"requests": [
{
"class": "transition",
"command": {
"execute": "transitionName",
"arguments": [],
"server": "deviceServer",
"device_name": "deviceName",
"device_type": "deviceType",
"device_id": "deviceId"
},
"schedule": {
"second": "*",
"minute": "*",
"hour": "*",
"day_of_month": "*",
"month": "*",
"day_of_week": "*",
"sun": {
"position": "sunPosition",
"latitude": 35.78,
"longitude": -78.649999
}
}
},
{
"class": "shell",
"command" : {
"execute": "commandName",
"arguments": ["argv1", "argv2"]
},
"schedule": {
"second": "*",
"minute": "*",
"hour": "*",
"day_of_month": "*",
"month": "*",
"day_of_week": "*",
"sun": {
"position": "sunPosition",
"latitude": 35.78,
"longitude": -78.649999
}
}
}
]
}