-
|
Hello I've been using Tado Smart AC controllers V3 for years Recently changed to Tado CE control in HA version 4. Which works fine with two controllers, but one , that I added back after having some E04 errors is playing up. All three controllers have the same firmware I've added the third controller back, it works fine in the Tado Android app, and also tried the 'old' Tado device on HA , again fine. But in the CE version, it shows binary_sensor.salon_bay_window_connection 'Cannot change status. Disabled by Device.' in the Diagnostic, l the other two are showing Connection Connected and are running perfectly So I'm stuck here as this controls all the HVAC modes and completely lost to why this device isn't connecting properly, while the other two are. Any ideas would be more than welcome Thanks Installation method Home Assistant Container |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
|
Hi @Trebor87, your hardware is fine and so is your config. What you're seeing is a Home Assistant UI quirk rather than anything tado_ce is doing. "Cannot change status. Disabled by Device" is HA's way of saying "this entity is disabled because its parent device is disabled, so you can't toggle the entity directly, you have to enable the device". Devices in HA only get disabled when someone (you, or rarely the integration) explicitly disables them in To fix it:
If for some reason you don't see the device at all in that list, let me know and I'll look into the device-registry side. But based on what you described (other two controllers working, hardware fine in the Tado app, fine on the old HA integration), I'm confident this is just an HA-side toggle that needs flipping back. |
Beta Was this translation helpful? Give feedback.
Hi @Trebor87, glad the toggle dance worked for the connection state.
The HVAC-modes-only-OFF symptom on the same zone is a separate but related thing, and it lines up with what likely happened during the E04 rebuild. Here's the mechanism: Tado CE caches your AC unit's reported capabilities (which HVAC modes it supports, fan levels, swing axes, target-temperature ranges) once per install, in a file called
ac_capabilities_<home_id>.jsoninside HA's.storage/tado_ce/directory. The cache is keyed by Tado's zone ID, and the integration only refetches when the cache file is missing. The reasoning was that AC unit capabilities don't change over the lifetime of the device, so there's no value in…