homebridge-kobold
Version:
A Vorwerk Kobold vacuum robot plugin for homebridge.
50 lines (49 loc) • 1.22 kB
JSON
{
"pluginAlias": "KoboldVacuumRobot",
"pluginType": "platform",
"headerDisplay": "For Advanced settings like the refresh time interval or disabled switches/sensors. [Check Here](https://github.com/himbeles/homebridge-kobold#readme)",
"strictValidation": false,
"schema": {
"type": "object",
"required": [
"name", "token"
],
"properties": {
"name": {
"title": "Name",
"type": "string",
"default": "Kobold Vacuum Platform"
},
"token": {
"title": "token",
"type": "string",
"description": "Your Kobold Token (https://git.io/J3g1b)"
},
"language": {
"title": "language",
"type": "string",
"default": "en",
"oneOf": [
{
"title": "English",
"enum": [
"en"
]
},
{
"title": "German",
"enum": [
"de"
]
},
{
"title": "French",
"enum": [
"fr"
]
}
]
}
}
}
}