1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 12:59:34 +00:00

Add fault event to balboa (#138623)

* Add fault sensor to balboa

* Use an event instead of sensor for faults

* Don't set fault initially in conftest

* Use event type per fault message code

* Set fault to None in conftest
This commit is contained in:
Nathan Spencer
2025-03-02 12:24:27 -07:00
committed by GitHub
parent e63b17cd58
commit f76e295204
6 changed files with 295 additions and 1 deletions

View File

@@ -68,4 +68,6 @@ def client_fixture() -> Generator[MagicMock]:
client.pumps = []
client.temperature_range.state = LowHighRange.LOW
client.fault = None
yield client