generated from homebridge/homebridge-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.schema.json
152 lines (152 loc) · 4.81 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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
{
"pluginAlias": "HomebridgeSkyLiteEvolve",
"pluginType": "platform",
"singular": true,
"headerDisplay": "For documentation please see the [GitHub repository](https://github.com/kevbo/homebridge-sky-lite-evolve)",
"footerDisplay": "Plugin by [Kevin Boers](https://www.kevbo.us)",
"schema": {
"type": "object",
"properties": {
"cloud_credentials": {
"title": "Cloud Credentials",
"type": "object",
"properties": {
"tuya_region": {
"title": "Tuya IoT Regional Endpoint",
"type": "string",
"required": true,
"default": "https://openapi.tuyaus.com",
"description": "This is the region in which your Tuya Cloud Project lives. If you are in the Western America Data Center, use the default. Otherwise, make sure to find the URL for your region: https://developer.tuya.com/en/docs/iot/api-request?id=Ka4a8uuo1j4t4#title-1-Endpoints"
},
"tuya_access_key": {
"title": "Tuya IoT Access Key",
"type": "string",
"required": true,
"description": "The Access ID/Client ID from your cloud project Overview tab"
},
"tuya_secret_key": {
"title": "Tuya IoT Secret Key",
"type": "string",
"required": true,
"description": "The Access Secret/Client Secret from your cloud project Overview tab"
}
}
},
"projectors": {
"type": "array",
"items": {
"title": "Projectors",
"type": "object",
"properties": {
"name": {
"title": "Name",
"type": "string",
"required": true,
"default": "Evolve",
"description": "This is what will appear in the Apple Home app for this projector"
},
"tuya_device_id": {
"title": "Tuya IoT Device ID",
"type": "string",
"required": true,
"description": "The Device ID from your cloud project Devices tab"
},
"manufacturer": {
"title": "Manufacturer",
"type": "string",
"required": true,
"default": "BlissLights",
"description": "This is what will appear in the Apple Home app for this accessory"
},
"model": {
"title": "Model",
"type": "string",
"required": true,
"default": "Sky Lite Evolve",
"description": "This is what will appear in the Apple Home app for this accessory"
},
"serial_number": {
"title": "Serial Number",
"type": "string",
"required": true,
"default": "Example Serial Number",
"description": "This is what will appear in the Apple Home app for this accessory"
}
}
}
},
"advanced_settings": {
"title": "Advanced Settings",
"type": "object",
"properties": {
"polling_interval": {
"title": "Polling Interval",
"type": "number",
"required": true,
"default": 1000,
"description": "Polling interval in milliseconds"
},
"max_api_retries": {
"title": "Max API Retries",
"type": "number",
"required": true,
"default": 5,
"description": "Max number of times to retry API calls"
}
}
}
}
},
"layout": [
{
"key": "cloud_credentials",
"type": "section",
"orderable": false,
"title": "Cloud Credentials",
"expandable": true,
"expanded": false,
"items": [
"cloud_credentials.tuya_region",
"cloud_credentials.tuya_access_key",
"cloud_credentials.tuya_secret_key"
]
},
{
"type": "section",
"orderable": false,
"title": "Projectors",
"expandable": true,
"expanded": false,
"items": [
{
"key": "projectors",
"type": "array",
"orderable": false,
"buttonText": "Add Another Projector",
"title": "Projector",
"expandable": true,
"expanded": false,
"items": [
"projectors[].name",
"projectors[].tuya_device_id",
"projectors[].manufacturer",
"projectors[].model",
"projectors[].serial_number"
]
}
]
},
{
"key": "advanced_settings",
"type": "section",
"orderable": false,
"title": "Advanced Settings",
"expandable": true,
"expanded": false,
"items": [
"advanced_settings.polling_interval",
"advanced_settings.max_api_retries"
]
}
]
}