homebridge-chaffolink
Version:
Homebridge plugin to add compatibility with ChaffoLink boilers
29 lines (28 loc) • 908 B
JSON
{
"pluginAlias": "ChaffoLinkPlatform",
"pluginType": "platform",
"singular": true,
"schema": {
"type": "object",
"properties": {
"name": { "title": "Name", "type": "string", "default": "ChaffoLink" },
"email": { "title": "Email", "type": "string" },
"password": { "title": "Password", "type": "string", "format": "password" },
"pollInterval": {
"title": "Get Status Interval (ms)",
"type": "number",
"default": 60000,
"minimum": 5000
},
"failRetryTime": {
"title": "If fail, time to wait before retry (ms)",
"type": "number",
"default": 120000,
"minimum": 30000
},
"minTemp": { "title": "Min Temp", "type": "number", "default": 5 },
"maxTemp": { "title": "Max Temp", "type": "number", "default": 35 }
},
"required": ["name", "baseUrl", "username", "password"]
}
}