homebridge-tcl-home
Version:
Homebridge plugin for TCL Home air conditioners with real-time updates - supports P09F4CSW1K and similar models
63 lines (62 loc) • 1.75 kB
JSON
{
"pluginAlias": "TclHome",
"pluginType": "platform",
"singular": true,
"headerDisplay": "TCL Home plugin for Homebridge - Control your TCL air conditioners through HomeKit",
"footerDisplay": "For support and documentation, visit: [GitHub Repository](https://github.com/5at0ri/homebridge-tcl-home)",
"schema": {
"type": "object",
"properties": {
"name": {
"title": "Platform Name",
"type": "string",
"default": "TCL Home",
"required": true,
"description": "Name for this platform in Homebridge"
},
"username": {
"title": "TCL Home Email",
"type": "string",
"format": "email",
"required": true,
"placeholder": "your.email@example.com",
"description": "Your TCL Home app email address"
},
"password": {
"title": "TCL Home Password",
"type": "string",
"required": true,
"description": "Your TCL Home app password"
},
"debugMode": {
"title": "Enable Debug Logging",
"type": "boolean",
"default": false,
"description": "Show detailed debug information in Homebridge logs (useful for troubleshooting)"
}
}
},
"layout": [
{
"type": "fieldset",
"title": "TCL Home Account Credentials",
"description": "Enter your TCL Home app login details",
"expandable": false,
"items": [
"name",
"username",
"password"
]
},
{
"type": "fieldset",
"title": "Advanced Options",
"description": "Optional settings for debugging and troubleshooting",
"expandable": true,
"expanded": false,
"items": [
"debugMode"
]
}
]
}