I have never turned off Valve Protection, I only installed HA to debug my signal strength and what the radiators were doing. When I look in HA it says valve protection is off. Do you know if this is a bug? I know you can turn it on in the HA integration. But mine shouldn’t be off in the first place. When I look in the log I see unavailble, is this just because the hub is unavailable at these times? I’ve just tried turning it on then off today to confirm in the log.
Oops, I think it might be the lounge as that is hovering around set temp, I will monitor some more, but it’s odd that the lounge is not showing any logs, all other zones do.
when the Heating is set to off the Target Temperature entity becomes unavailable (see attached pic, can this be changed to 5˚c as I thought the valves are never truly off due to the Frost Protection being set to 5˚c ?
Hi all, sorry for the lack of responses over the past couple of months. Enjoying long holiday in Oz and then having some matters to attend to. However, i all back now!
@crankshaft , this was a known HA issue from some time ago. It was raised as a frontend issue but was never addressed afaik. When i looked before, i didnt think there was a good solution except HA devs fixing the frontend. I’ll have another look as was a number of versions ago and much has changed since then.
@andyblac , no we cant change this. There is a debate further up as anything but making it unavailable or unknown was causing issues with history graphs when rooms were turned off. In reality there is no target temp when a room is off (well actually it is -20C but that really messes up history!).
Valve protection did historically exisit in the Wiser app as a switch. It can still be turned on and off through our api but at this point, i do not know if this actually does anything anymore or whether it is always on irrespective of this setting. If anyone does know please chip in.
However, if your switch in HA shows off then your hub is reporting off but as i say, dont know whether it is or not.
ok np, I have manually edited the code myself, and it seems to be working, it also stops the gaps in the History graph as well, so I just keep tweaking on each update.
def _handle_coordinator_update(self) -> None:
"""Fetch new state data for the sensor."""
super()._handle_coordinator_update()
if self._lts_sensor_type == "current_temp":
self._state = self._data.wiserhub.rooms.get_by_id(
self._device_id
).current_temperature
elif self._lts_sensor_type == "floor_current_temp":
self._state = self._data.wiserhub.devices.get_by_id(
self._device_id
).floor_temperature_sensor.measured_temperature
else:
if (
self._data.wiserhub.rooms.get_by_id(self._device_id).mode == "Off"
or self._data.wiserhub.rooms.get_by_id(
self._device_id
).current_target_temperature
== TEMP_OFF
):
self._state = "5"
else:
self._state = self._data.wiserhub.rooms.get_by_id(
self._device_id
).current_target_temperature
self.async_write_ha_state()
Hi @msp1974. I’ve updated to latest version of integration yesterday and “toggle hot water button” is gone making my hot water tank automation to stop working.
Was this expected? I couldn’t see other ways to trigger hot water and there was nothing mentioned in change log, so I’ve downgraded to previous version and things are working again.
Thanks
I still see the Toggle Hot Water button for my hub on version 3.4.6. However I notice that HA is reporting the version I am using as 3.4.6 whereas the most recent version is 3.4.7. I redownloaded via HACS and specified 3.4.7 but after restart of HA I’m still seeing HA report 3.4.6.
I’ve installed new version again and same again happened. Can’t see anything related to Wiser in main logs. I’ve downloaded integration statistics, but not sure errors go there. If I’m looking at the wrong location, please point me and I’ll get logs. But as you can see some entities have disappeared after upgrade
I’m seeing this exact same behaviour. HACS says I’m on latest (3.4.7) but the loaded integration is a lower one (3.4.6) and all “buttons” in the integration are greyed out.
Moments are coming thru but Water & Heating boosts aren’t there.
If I downgrade to 3.4.6 in HACS then the buttons all come back and I don’t see a mismatch between the install and loaded versions but then I’m ‘nagged’ to upgrade to 3.4.7 again and the buttons disappear.
Are there any files I can supply to help resolve this ?
Just been looking and yes. When I was fixing some linting issues, it may appear ( ) that I made a typo so these buttons will not get created if you have any moments configured.
However, the wonderful thing abouts a HACS integration, is I can fix this cock up quickly.
Please redownload v3.4.7 and it should now work properly.