homebridge-mitsubishi-wfrac
Version:
Control Mitsubishi WF-RAC AC units via Homebridge (LAN-only, no cloud required)
48 lines (47 loc) • 1.13 kB
JSON
{
"pluginAlias": "MitsubishiWFRACPlatform",
"pluginType": "platform",
"customUi": true,
"singular": true,
"schema": {
"type": "object",
"properties": {
"name": {
"type": "string",
"title": "Platform Name",
"default": "MitsubishiWFRACPlatform"
},
"acUnits": {
"type": "array",
"title": "AC Units",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"title": "Name"
},
"host": {
"type": "string",
"title": "IP Address"
},
"deviceId": {
"type": "string",
"title": "Device ID"
},
"operatorId": {
"type": "string",
"title": "Operator ID"
},
"airconId": {
"type": "string",
"title": "Aircon ID"
}
},
"required": ["name", "host", "deviceId", "operatorId", "airconId"]
}
}
},
"required": ["name", "acUnits"]
}
}