Add Reolink siren state (#153169)

This commit is contained in:
starkillerOG
2025-09-29 08:42:38 +02:00
committed by GitHub
parent 7eb0f2993f
commit f833b56122
3 changed files with 9 additions and 1 deletions

View File

@@ -171,6 +171,7 @@ def _init_host_mock(host_mock: MagicMock) -> None:
host_mock.baichuan.mac_address.return_value = TEST_MAC_CAM
host_mock.baichuan.privacy_mode.return_value = False
host_mock.baichuan.day_night_state.return_value = "day"
host_mock.baichuan.siren_state.return_value = True
host_mock.baichuan.subscribe_events.side_effect = ReolinkError("Test error")
host_mock.baichuan.active_scene = "off"
host_mock.baichuan.scene_names = ["off", "home"]