-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.schema.json
82 lines (82 loc) · 1.94 KB
/
config.schema.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
{
"pluginAlias": "HueDaylightSync",
"pluginType": "platform",
"singular": true,
"customUi": true,
"schema": {
"type": "object",
"properties": {
"name": {
"title": "Name",
"type": "string",
"required": true,
"default": "Daylight Sync"
},
"bridgeIp": {
"title": "Hue Bridge IP",
"type": "string",
"required": true,
"format": "ipv4"
},
"apiToken": {
"title": "Hue API Token",
"type": "string",
"required": true
},
"latitude": {
"title": "Latitude",
"type": "number",
"required": true,
"minimum": -90,
"maximum": 90
},
"longitude": {
"title": "Longitude",
"type": "number",
"required": true,
"minimum": -180,
"maximum": 180
},
"warmTemp": {
"title": "Warm Temperature (K)",
"type": "integer",
"default": 2400,
"minimum": 2000,
"maximum": 6500
},
"coolTemp": {
"title": "Cool Temperature (K)",
"type": "integer",
"default": 2800,
"minimum": 2000,
"maximum": 6500
},
"curveExponent": {
"title": "Curve Exponent",
"type": "number",
"minimum": 0.1,
"maximum": 10,
"default": 3,
"description": "Adjusts the steepness of the transition curve."
},
"updateInterval": {
"title": "Update Interval (ms)",
"type": "integer",
"default": 300000,
"minimum": 1000
},
"inputDebounceDelay": {
"title": "Input Debounce Delay (ms)",
"type": "integer",
"default": 750,
"minimum": 0
},
"defaultAutoMode": {
"title": "Default Auto Mode",
"type": "boolean",
"default": true,
"description": "Set to true to enable Auto Mode by default, false to disable."
}
}
}
}