custom_components icon indicating copy to clipboard operation
custom_components copied to clipboard

missing feature test reposetory

Results 11 custom_components issues
Sort by recently updated
recently updated
newest added

I suggest adding a variant of the actuator, for example, a heater or cooler with a domain other than the switch (for example, cover) and a smooth adjustment from 0...

Hello, I configured the smart_thermostat on my Home Assistant core (docker contained) instance. I set the climate entity with the following configuration : >\- platform: smart_thermostat > name: salle_de_bain >...

Based on [honeywell TPI](https://youlearn.honeywellhome.com/uploads/documents/FAQ_-_TPI_functionality.pdf) they are using PID only in ranges +/- 1.5deg of requested temp. We could use same strategy ! "A TPI room thermostat works by continuously measuring...

Because not have version key on your manifest file the custom module not load. This is the log output: 2021-06-05 09:34:41 ERROR (SyncWorker_2) [homeassistant.loader] The custom integration 'smart_thermostat' does not...

Hi, I'm setting thermostat at my house. I was using the simple HA thermostat and observe there are some improvements can be done during heating period. And I found your...

Thank you for your smart thermostat! Currently using it in my setup. Modifying configuration.yaml requires a restart of HASS, making it quite tedious to hand-tune the PID values (autotune does...

Hi, I've this exceptionin ha log. I think this is related with auto-tune option maybe? ``` 2020-10-06 02:35:40 ERROR (MainThread) [homeassistant] Error doing job: Task exception was never retrieved Traceback...

### The problem ClimateDevice is deprecated ### Environment Home Assistant 2020.12.2 ### Traceback/Error logs `SmartThermostat integration: ClimateDevice is deprecated, modify SmartThermostat to extend ClimateEntity`

I did some checks to the official generic thermostat and found some differences. Should these be included? double _async_async: https://github.com/fabiannydegger/custom_components/blob/22a1572bcbd9327baab10e7520cc54bc8470939a/smart_thermostat/climate.py#L335 missing preset_none: https://github.com/fabiannydegger/custom_components/blob/22a1572bcbd9327baab10e7520cc54bc8470939a/smart_thermostat/climate.py#L310-L311 to: ``` if self._away_temp: return [PRESET_NONE, PRESET_AWAY]...

Initially I got can't divide by zero errors and then I modified the code a little bit so that it doesn't fail and I got all 3 values 0. (if...