Open T0FFF opened 2 months ago
I tried directly from HA, the daikin_altherma integration gives the right key (DomesticHotWaterTemperatureHeating instead of TargetTemperature) in call_operation. Now I have {'maxValue': 57.0, 'minValue': 30.0, 'stepValue': 1.0, 'settable': False}. So It should work but I have a last problem, my operation is not settable and I don't know how to change this configuration on the device.
For now I have to remove the if self._is_settable_target_temp():
condition in water_heater.py in the HA integration and it works, I just have a warning "Invalid argument XX for operation DomesticHotWaterTemperatureHeating or operation is not settable." from pyaltherma but the temperature changes.
So, the pyaltherma works in the HA environment but not directly called by example.py. And last point, I don't see how to set the settable: false
to True.
There is a problem with the update of the hot water temperature.
Daikin Altherma version in HA: v1.5.2
If I used the example.py script, an error occurred :
Indeed, if I print the value of conf, only conf['settable'] exists. If I remove this condition
conf['minValue'] <= value <= conf['maxValue']
in controllers.py, it works. Yet if I look, minValue & maxValue exists in the trace for DomesticHotWaterTemperatureHeating :Could you check this issue please ?