Full testus ok for Valve

This commit is contained in:
Jean-Marc Collin
2023-10-27 17:06:00 +00:00
parent e7c39f144b
commit fe694048af
3 changed files with 75 additions and 28 deletions

View File

@@ -31,7 +31,10 @@ class ThermostatOverValve(BaseThermostat):
@property
def valve_open_percent(self) -> int:
""" Gives the percentage of valve needed"""
return round(max(0, min(self.proportional_algorithm.on_percent, 1)) * 100)
if self._hvac_mode == HVACMode.OFF:
return 0
else:
return round(max(0, min(self.proportional_algorithm.on_percent, 1)) * 100)
def post_init(self, entry_infos):
""" Initialize the Thermostat"""

View File

@@ -658,13 +658,34 @@ class UnderlyingValve(UnderlyingEntity):
self._hvac_mode = None
self._percent_open = self._thermostat.valve_open_percent
async def send_percent_open(self):
""" Send the percent open to the underlying valve """
# This may fails if called after shutdown
try:
data = { "value": self._percent_open }
await self._hass.services.async_call(
HA_DOMAIN,
SERVICE_SET_VALUE,
data,
)
except ServiceNotFound as err:
_LOGGER.error(err)
async def turn_off(self):
"""Turn heater toggleable device off."""
_LOGGER.debug("%s - Stopping underlying valve entity %s", self, self._entity_id)
self._percent_open = 0
if self.is_device_active:
await self.send_percent_open()
async def turn_on(self):
"""Nothing to do for Valve because it cannot be turned off"""
async def set_hvac_mode(self, hvac_mode: HVACMode) -> bool:
"""Set the HVACmode. Returns true if something have change"""
if hvac_mode == HVACMode.OFF:
if self.is_device_active:
await self.turn_off()
self._cancel_cycle()
await self.turn_off()
if self._hvac_mode != hvac_mode:
self._hvac_mode = hvac_mode
@@ -701,12 +722,7 @@ class UnderlyingValve(UnderlyingEntity):
try:
_LOGGER.info("%s - Setting valve ouverture percent to %s", self, self._percent_open)
data = { "value": self._percent_open }
await self._hass.services.async_call(
HA_DOMAIN,
SERVICE_SET_VALUE,
data,
)
await self.send_percent_open()
except ServiceNotFound as err:
_LOGGER.error(err)