-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathbinary_sensor.py
177 lines (139 loc) · 6.92 KB
/
binary_sensor.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
import logging
from home_connect_async import Appliance, HomeConnect, Events
from homeassistant.components.binary_sensor import BinarySensorEntity
from homeassistant.core import HomeAssistant
from homeassistant.helpers.entity_platform import AddEntitiesCallback
from homeassistant.helpers.typing import ConfigType
from .common import Configuration, EntityBase, EntityManager
from .const import DOMAIN
_LOGGER = logging.getLogger(__name__)
async def async_setup_entry(hass:HomeAssistant , config_entry:ConfigType, async_add_entities:AddEntitiesCallback) -> None:
"""Add sensors for passed config_entry in HA."""
#auth = hass.data[DOMAIN][config_entry.entry_id]
#homeconnect:HomeConnect = hass.data[DOMAIN]['homeconnect']
entry_conf:Configuration = hass.data[DOMAIN][config_entry.entry_id]
homeconnect:HomeConnect = entry_conf["homeconnect"]
entity_manager = EntityManager(async_add_entities, "Binary Sensor")
def add_appliance(appliance:Appliance) -> None:
conf:Configuration = entry_conf.get_config()
for (key, status) in appliance.status.items():
device = None
if isinstance(status.value, bool) or conf.get_entity_setting(key, "type") == "Boolean": # should be a binary sensor if it has a boolean value
device = StatusBinarySensor(appliance, key, conf)
entity_manager.add(device)
if appliance.selected_program and appliance.selected_program.options:
for option in appliance.selected_program.options.values():
if isinstance(option.value, bool) or conf.get_entity_setting(option.key, "type") == "Boolean":
device = ProgramOptionBinarySensor(appliance, option.key, conf)
entity_manager.add(device)
if appliance.active_program and appliance.active_program.options:
for option in appliance.active_program.options.values():
if isinstance(option.value, bool) or conf.get_entity_setting(option.key, "type") == "Boolean":
device = ProgramOptionBinarySensor(appliance, option.key, conf)
entity_manager.add(device)
if appliance.settings:
for setting in appliance.settings.values():
if setting.type == "Boolean" or isinstance(setting.value, bool) or conf.get_entity_setting(setting.key, "type") == "Boolean":
device = SettingsBinarySensor(appliance, setting.key, conf)
entity_manager.add(device)
entity_manager.add(ConnectionBinarySensor(appliance, "Connected", conf))
# if len(new_entities)>0:
# entity_manager.register_entities(new_entities, async_add_entities)
entity_manager.register()
def remove_appliance(appliance:Appliance) -> None:
entity_manager.remove_appliance(appliance)
homeconnect.register_callback(add_appliance, [Events.PAIRED, Events.DATA_CHANGED, Events.PROGRAM_STARTED, Events.PROGRAM_SELECTED])
homeconnect.register_callback(remove_appliance, Events.DEPAIRED)
for appliance in homeconnect.appliances.values():
add_appliance(appliance)
class ProgramOptionBinarySensor(EntityBase, BinarySensorEntity):
""" Program option binary sensor """
@property
def device_class(self) -> str:
return f"{DOMAIN}__options"
@property
def name_ext(self) -> str:
current_program = self._appliance.get_applied_program()
if current_program and current_program.options and self._key in current_program.options:
return current_program.options[self._key].name
return None
@property
def icon(self) -> str:
return self.get_entity_setting('icon', 'mdi:office-building-cog')
@property
def available(self) -> bool:
current_program = self._appliance.get_applied_program()
return super().available and current_program and current_program.options and self._key in current_program.options
@property
def is_on(self):
current_program = self._appliance.get_applied_program()
if current_program and current_program.options and self._key in current_program.options:
return current_program.options[self._key].value
return None
async def async_on_update(self, appliance:Appliance, key:str, value) -> None:
self.async_write_ha_state()
class ActivityOptionBinarySensor(ProgramOptionBinarySensor):
""" Special active program sensor """
@property
def available(self) -> bool:
return self._appliance.active_program and self._key in self._appliance.active_program.options
@property
def name_ext(self) -> str:
if self._appliance.active_program and (self._key in self._appliance.active_program.options):
return self._appliance.active_program.options[self._key].name
return None
class StatusBinarySensor(EntityBase, BinarySensorEntity):
""" Status binary sensor """
@property
def icon(self) -> str:
return self.get_entity_setting('icon', 'mdi:gauge-full')
@property
def name_ext(self) -> str:
if self._key in self._appliance.status:
status = self._appliance.status[self._key]
if status:
return status.name
return None
@property
def is_on(self) -> bool:
if self._key in self._appliance.status:
if self.has_entity_setting("on_state"):
return self._appliance.status[self._key].value == self.get_entity_setting("on_state")
return self._appliance.status[self._key].value
return None
async def async_on_update(self, appliance:Appliance, key:str, value) -> None:
self.async_write_ha_state()
class SettingsBinarySensor(EntityBase, BinarySensorEntity):
""" Status sensor """
@property
def device_class(self) -> str:
return f"{DOMAIN}__settings"
@property
def name_ext(self) -> str:
if self._key in self._appliance.settings:
setting = self._appliance.settings[self._key]
if setting:
return setting.name
return None
@property
def icon(self) -> str:
return self.get_entity_setting('icon', 'mdi:tune')
@property
def is_on(self):
if self._key in self._appliance.settings:
if self.has_entity_setting("on_state"):
return self._appliance.settings[self._key].value == self.get_entity_setting("on_state")
return self._appliance.settings[self._key].value
return None
async def async_on_update(self, appliance:Appliance, key:str, value) -> None:
self.async_write_ha_state()
class ConnectionBinarySensor(EntityBase, BinarySensorEntity):
""" Appliance connected state binary sensor """
@property
def available(self) -> bool:
return True
@property
def is_on(self) -> bool:
return self._appliance.connected
async def async_on_update(self, appliance:Appliance, key:str, value) -> None:
self.async_write_ha_state()