1
This repository has been archived on 2025-03-15. You can view files and clone it, but cannot push or open issues or pull requests.
homebridge-wiz-net/config.schema.json
2025-03-15 20:40:21 +01:00

64 lines
1.4 KiB
JSON

{
"pluginAlias": "WizSmartHome",
"pluginType": "platform",
"singular": true,
"schema": {
"type": "object",
"properties": {
"name": {
"title": "Name",
"type": "string",
"default": "WizSmartHome"
},
"port": {
"title": "Port",
"type": "integer",
"description": "[Optional] Port for bulbs to connect to your server.",
"placeholder": 38900,
"minimum": 0
},
"enableScenes": {
"title": "Enable Scenes",
"type": "boolean",
"description": "[Optional] Turn on support for scenes with your lightbulbs. THIS WILL MAKE IT IMPOSSIBLE TO GROUP LIGHTS",
"default": false
},
"broadcast": {
"title": "Broadcast Address",
"type": "string",
"format": "ipv4",
"description": "[Optional] UDP Broadcast address for bulb discovery."
},
"address": {
"title": "Server Address",
"type": "string",
"format": "ipv4",
"description": "[Optional] Your server's IP address."
},
"devices": {
"title": "Devices",
"type": "array",
"description": "[Optional] Manual list of IP addresses of bulbs",
"items": {
"type": "object",
"properties": {
"host": {
"title": "Device IP",
"type": "string",
"format": "ipv4"
},
"name": {
"title": "Device Name",
"type": "string"
},
"mac": {
"title": "Device MAC",
"type": "string"
}
}
}
}
}
}
}