homebridge-tado-ac
Version:
[DEPRECATED] tado° Smart AC Control plugin for homebridge. Tado deprecated their authentication API in March 2025, this plugin no longer works. Please migrate to @homebridge-plugins/homebridge-tado v8+ which now supports AC.
244 lines • 6.47 kB
JSON
{
"pluginAlias": "TadoAC",
"pluginType": "platform",
"singular": true,
"headerDisplay": "Homebridge plugin for tado° - Smart AC Control",
"footerDisplay": "Created by @nitaybz",
"schema": {
"type": "object",
"properties": {
"username": {
"title": "Username",
"description": "Your tado° account username",
"type": "string",
"required": true
},
"password": {
"title": "Password",
"description": "Your tado° account password",
"type": "string",
"required": true
},
"occupancySensorsEnabled": {
"title": "Occupancy Sensors",
"description": "Show occupancy sensors for each tado° user connected to your home",
"type": "boolean",
"default": false,
"required": false
},
"occupancyPollingInterval": {
"title": "Occupancy Status Polling Interval in Seconds",
"description": "Time in seconds between each status polling of the occupancy sensors",
"default": 10,
"type": "integer",
"minimum": 3,
"maximum": 600
},
"anyoneSensor": {
"title": "Anyone Occupancy Sensor",
"description": " Adds 1 Occupancy Sensor named \"Anyone\" to represent the state of someone at home",
"type": "boolean",
"default": false,
"required": false
},
"weatherSensorsEnabled": {
"title": "Weather Sensor",
"description": "Show weather sensor with outside temperature and solar intensity",
"type": "boolean",
"default": false,
"required": false
},
"weatherPollingInterval": {
"title": "Weather Status Polling Interval in Minutes",
"description": "Time in minutes between each status polling of the weather information",
"default": 5,
"type": "integer",
"minimum": 1,
"maximum": 60
},
"homeID": {
"title": "Home ID",
"description": "If supplied, the plugin will use the attached one and not try to retrieve it",
"type": "integer",
"required": false
},
"tadoMode": {
"title": "tado° Mode",
"type": "string",
"default": "MANUAL",
"required": true,
"oneOf": [
{
"title": "MANUAL: Manual control until ended by the user",
"enum": [
"MANUAL"
]
},
{
"title": "TADO_MODE: Manual control until next schedule change",
"enum": [
"TADO_MODE"
]
},
{
"title": "TIMER: Manual control until timer ends",
"enum": [
"TIMER"
]
}
]
},
"durationInMinutes": {
"title": "Timer Duration in Minutes",
"description": "Duration in minutes for the \"TIMER\" settings",
"default": 90,
"type": "integer",
"minimum": 5,
"maximum": 720
},
"disableFan": {
"title": "Disable Fan Accessory",
"description": "Disable FAN mode control - remove extra fan accessory",
"type": "boolean",
"default": false,
"required": false
},
"disableDry": {
"title": "Disable Dry Accessory",
"description": "Disable DRY mode control - remove extra dehumidifier accessory",
"type": "boolean",
"default": false,
"required": false
},
"manualControlSwitch": {
"title": "Enable Manual Control Switch",
"description": "Adding a switch to set or remove manual control",
"type": "boolean",
"default": false,
"required": false
},
"historyStorage": {
"title": "Enable History Storage",
"description": "Records all temperature & humidity measurements history to be viewable in the Eve app",
"type": "boolean",
"default": false,
"required": false
},
"extraHumiditySensor": {
"title": "Enable External Humidity Sensor",
"description": "Creates an external sensor outside of the accessory that shows relative humidity",
"type": "boolean",
"default": false,
"required": false
},
"forceThermostat": {
"title": "Force Thermostat Accessory",
"description": "When enabled, it will force Homebridge to create Thermostat accessory instead of the default HeaterCooler(AC)",
"type": "boolean",
"default": false,
"required": false
},
"forceHeaterCooler": {
"title": "Force HeaterCooler(AC) Accessory",
"description": "When enabled, it will force Homebridge to create HeaterCooler(AC) accessory instead of Thermostat, even when Thermostatic mode is enabled",
"type": "boolean",
"default": false,
"required": false
},
"disableAcAccessory": {
"title": "Disable AC Accessory",
"description": "When enabled, it will ignore the main AC devices and will only show occupancy sensors & weather sensors",
"type": "boolean",
"default": false,
"required": false
},
"statePollingInterval": {
"title": "AC Device Status Polling Interval in Seconds",
"description": "Time in seconds between each status polling of the tado devices (set to 0 for no polling)",
"default": 30,
"type": "integer",
"minimum": 0,
"maximum": 600
},
"debug": {
"title": "Enable Debug Logs",
"description": "When checked, the plugin will produce extra logs for debugging purposes",
"type": "boolean",
"default": false,
"required": false
}
}
},
"layout": [
{
"key": "username"
},
{
"key": "password"
},
{
"key": "tadoMode"
},
{
"key": "durationInMinutes",
"condition": {
"functionBody": "return (model.tadoMode === 'TIMER')"
}
},
{
"key": "manualControlSwitch"
},
{
"key": "historyStorage"
},
{
"key": "occupancySensorsEnabled"
},
{
"key": "occupancyPollingInterval",
"condition": {
"functionBody": "return (model.occupancySensorsEnabled && model.occupancySensorsEnabled === true)"
}
},
{
"key": "anyoneSensor",
"condition": {
"functionBody": "return (model.occupancySensorsEnabled && model.occupancySensorsEnabled === true)"
}
},
{
"key": "weatherSensorsEnabled"
},
{
"key": "weatherPollingInterval",
"condition": {
"functionBody": "return (model.weatherSensorsEnabled && model.weatherSensorsEnabled === true)"
}
},
{
"key": "disableFan"
},
{
"key": "disableDry"
},
{
"key": "extraHumiditySensor"
},
{
"key": "debug"
},
{
"type": "fieldset",
"expandable": true,
"title": "Advanced Settings",
"description": "Don't change these, unless you understand what you're doing.",
"items": [
"statePollingInterval",
"homeID",
"forceThermostat",
"forceHeaterCooler",
"disableAcAccessory"
]
}
]
}