homebridge-omnik
Version:
Add your Omnik-Inverter to Homekit
38 lines • 979 B
JSON
{
"pluginAlias": "Omnik",
"pluginType": "platform",
"singular": true,
"schema": {
"type": "object",
"properties": {
"ip": {
"title": "Omnik-inverter IP address",
"type": "string",
"required": true,
"default": ""
},
"username": {
"title": "Inverter username",
"type": "string",
"required": true,
"default": "admin",
"description": "The username is likely admin, unless it has been modified by the installer."
},
"password": {
"title": "Inverter password",
"type": "string",
"required": true,
"default": "admin",
"description": "The password is likely admin, unless it has been modified by the installer."
},
"pollInterval": {
"title": "Poll interval (in minutes)",
"type": "number",
"required": true,
"default": 5,
"minimum": 1,
"maximum": 15
}
}
}
}