@george.talusan/homebridge-eufy-robovac
Version:
Homebridge Plugin for Eufy Robovac
60 lines (59 loc) • 1.69 kB
JSON
{
"pluginAlias": "EufyRobovacHomebridgePlugin",
"pluginType": "platform",
"singular": true,
"schema": {
"type": "object",
"properties": {
"name": {
"title": "Name",
"description": "Arbitrary name for your Eufy Robovac",
"type": "string",
"required": true,
"default": "Eufy Robovac"
},
"ip": {
"title": "IP Address",
"description": "IP Address of your Eufy Robovac",
"type": "string",
"required": true,
"placeholder": "10.0.1.69"
},
"deviceId": {
"title": "Tuya Device ID",
"description": "Tuya/Eufy Device ID (see: https://github.com/gtalusan/eufy-device-id-js)",
"type": "string",
"required": true
},
"deviceKey": {
"title": "Tuya Device Key",
"description": "Tuya/Eufy Device/Local Key (see: https://github.com/gtalusan/eufy-device-id-js)",
"type": "string",
"required": true
},
"roomSwitches": {
"description": "Per-Room Switches",
"type": "array",
"items": {
"title": "Switch",
"type": "object",
"properties": {
"name": {
"title": "Name",
"type": "string",
"placeholder": "Arbitrary name for this switch",
"required": true
},
"rooms": {
"title": "Rooms",
"type": "string",
"placeholder": "A room number or comma-separated list of room numbers",
"pattern": "^[0-9]+(,[0-9]+)*$",
"required": true
}
}
}
}
}
}
}