-
-
Notifications
You must be signed in to change notification settings - Fork 37.2k
Add Elk-M1 sensor platform #17342
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Add Elk-M1 sensor platform #17342
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
3730e09
Initial sensor version.
de02584
Add Elk-M1 sensor services. Initial version of services.yaml.
265c10e
Fix lint errors.
7b2a4ad
Fix PR comments.
c4edb88
fix PR comment
209da24
Fix PR comment
1083cfb
Fix PR comments
76722e9
fix
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| speak_word: | ||
| description: Speak a word. See list of words in ElkM1 ASCII Protocol documentation. | ||
| fields: | ||
| number: | ||
| description: Word number to speak. | ||
| example: 142 | ||
| speak_phrase: | ||
| description: Speak a phrase. See list of phrases in ElkM1 ASCII Protocol documentation. | ||
| fields: | ||
| number: | ||
| description: Phrase number to speak. | ||
| example: 42 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,227 @@ | ||
| """ | ||
| Support for control of ElkM1 sensors. | ||
|
|
||
| For more details about this platform, please refer to the documentation at | ||
| https://home-assistant.io/components/sensor.elkm1/ | ||
| """ | ||
| from homeassistant.components.elkm1 import ( | ||
| DOMAIN as ELK_DOMAIN, create_elk_entities, ElkEntity) | ||
|
|
||
| DEPENDENCIES = [ELK_DOMAIN] | ||
|
|
||
|
|
||
| async def async_setup_platform(hass, config, async_add_entities, | ||
| discovery_info=None): | ||
| """Create the Elk-M1 sensor platform.""" | ||
| if discovery_info is None: | ||
| return | ||
|
|
||
| elk = hass.data[ELK_DOMAIN]['elk'] | ||
| entities = create_elk_entities( | ||
| hass, elk.counters, 'counter', ElkCounter, []) | ||
| entities = create_elk_entities( | ||
| hass, elk.keypads, 'keypad', ElkKeypad, entities) | ||
| entities = create_elk_entities( | ||
| hass, [elk.panel], 'panel', ElkPanel, entities) | ||
| entities = create_elk_entities( | ||
| hass, elk.settings, 'setting', ElkSetting, entities) | ||
| entities = create_elk_entities( | ||
| hass, elk.zones, 'zone', ElkZone, entities) | ||
| async_add_entities(entities, True) | ||
|
|
||
|
|
||
| def temperature_to_state(temperature, undefined_temperature): | ||
| """Convert temperature to a state.""" | ||
| return temperature if temperature > undefined_temperature else None | ||
|
|
||
|
|
||
| class ElkSensor(ElkEntity): | ||
| """Base representation of Elk-M1 sensor.""" | ||
|
|
||
| def __init__(self, element, elk, elk_data): | ||
| """Initialize the base of all Elk sensors.""" | ||
| super().__init__(element, elk, elk_data) | ||
| self._state = None | ||
|
|
||
| @property | ||
| def state(self): | ||
| """Return the state of the sensor.""" | ||
| return self._state | ||
|
|
||
|
|
||
| class ElkCounter(ElkSensor): | ||
| """Representation of an Elk-M1 Counter.""" | ||
|
|
||
| @property | ||
| def icon(self): | ||
| """Icon to use in the frontend.""" | ||
| return 'mdi:numeric' | ||
|
|
||
| def _element_changed(self, element, changeset): | ||
| self._state = self._element.value | ||
|
|
||
|
|
||
| class ElkKeypad(ElkSensor): | ||
| """Representation of an Elk-M1 Keypad.""" | ||
|
|
||
| @property | ||
| def temperature_unit(self): | ||
| """Return the temperature unit.""" | ||
| return self._temperature_unit | ||
|
|
||
| @property | ||
| def unit_of_measurement(self): | ||
| """Return the unit of measurement.""" | ||
| return self._temperature_unit | ||
|
|
||
| @property | ||
| def icon(self): | ||
| """Icon to use in the frontend.""" | ||
| return 'mdi:thermometer-lines' | ||
|
|
||
| @property | ||
| def device_state_attributes(self): | ||
| """Attributes of the sensor.""" | ||
| from elkm1_lib.util import username | ||
|
|
||
| attrs = self.initial_attrs() | ||
| attrs['area'] = self._element.area + 1 | ||
| attrs['temperature'] = self._element.temperature | ||
| attrs['last_user_time'] = self._element.last_user_time.isoformat() | ||
| attrs['last_user'] = self._element.last_user + 1 | ||
| attrs['code'] = self._element.code | ||
| attrs['last_user_name'] = username(self._elk, self._element.last_user) | ||
| return attrs | ||
|
|
||
| def _element_changed(self, element, changeset): | ||
| self._state = temperature_to_state(self._element.temperature, -40) | ||
|
|
||
| async def async_added_to_hass(self): | ||
| """Register callback for ElkM1 changes and update entity state.""" | ||
| await super().async_added_to_hass() | ||
| self.hass.data[ELK_DOMAIN]['keypads'][ | ||
| self._element.index] = self.entity_id | ||
|
|
||
|
|
||
| class ElkPanel(ElkSensor): | ||
| """Representation of an Elk-M1 Panel.""" | ||
|
|
||
| @property | ||
| def icon(self): | ||
| """Icon to use in the frontend.""" | ||
| return "mdi:home" | ||
|
|
||
| @property | ||
| def device_state_attributes(self): | ||
| """Attributes of the sensor.""" | ||
| attrs = self.initial_attrs() | ||
| attrs['system_trouble_status'] = self._element.system_trouble_status | ||
| return attrs | ||
|
|
||
| def _element_changed(self, element, changeset): | ||
| if self._elk.is_connected(): | ||
| self._state = 'Paused' if self._element.remote_programming_status \ | ||
| else 'Connected' | ||
| else: | ||
| self._state = 'Disconnected' | ||
|
|
||
|
|
||
| class ElkSetting(ElkSensor): | ||
| """Representation of an Elk-M1 Setting.""" | ||
|
|
||
| @property | ||
| def icon(self): | ||
| """Icon to use in the frontend.""" | ||
| return 'mdi:numeric' | ||
|
|
||
| def _element_changed(self, element, changeset): | ||
| self._state = self._element.value | ||
|
|
||
| @property | ||
| def device_state_attributes(self): | ||
| """Attributes of the sensor.""" | ||
| from elkm1_lib.const import SettingFormat | ||
| attrs = self.initial_attrs() | ||
| attrs['value_format'] = SettingFormat( | ||
| self._element.value_format).name.lower() | ||
| return attrs | ||
|
|
||
|
|
||
| class ElkZone(ElkSensor): | ||
| """Representation of an Elk-M1 Zone.""" | ||
|
|
||
| @property | ||
| def icon(self): | ||
| """Icon to use in the frontend.""" | ||
| from elkm1_lib.const import ZoneType | ||
| zone_icons = { | ||
| ZoneType.FIRE_ALARM.value: 'fire', | ||
| ZoneType.FIRE_VERIFIED.value: 'fire', | ||
| ZoneType.FIRE_SUPERVISORY.value: 'fire', | ||
| ZoneType.KEYFOB.value: 'key', | ||
| ZoneType.NON_ALARM.value: 'alarm-off', | ||
| ZoneType.MEDICAL_ALARM.value: 'medical-bag', | ||
| ZoneType.POLICE_ALARM.value: 'alarm-light', | ||
| ZoneType.POLICE_NO_INDICATION.value: 'alarm-light', | ||
| ZoneType.KEY_MOMENTARY_ARM_DISARM.value: 'power', | ||
| ZoneType.KEY_MOMENTARY_ARM_AWAY.value: 'power', | ||
| ZoneType.KEY_MOMENTARY_ARM_STAY.value: 'power', | ||
| ZoneType.KEY_MOMENTARY_DISARM.value: 'power', | ||
| ZoneType.KEY_ON_OFF.value: 'toggle-switch', | ||
| ZoneType.MUTE_AUDIBLES.value: 'volume-mute', | ||
| ZoneType.POWER_SUPERVISORY.value: 'power-plug', | ||
| ZoneType.TEMPERATURE.value: 'thermometer-lines', | ||
| ZoneType.ANALOG_ZONE.value: 'speedometer', | ||
| ZoneType.PHONE_KEY.value: 'phone-classic', | ||
| ZoneType.INTERCOM_KEY.value: 'deskphone' | ||
| } | ||
| return 'mdi:{}'.format( | ||
| zone_icons.get(self._element.definition, 'alarm-bell')) | ||
|
|
||
| @property | ||
| def device_state_attributes(self): | ||
| """Attributes of the sensor.""" | ||
| from elkm1_lib.const import ( | ||
| ZoneLogicalStatus, ZonePhysicalStatus, ZoneType) | ||
|
|
||
| attrs = self.initial_attrs() | ||
| attrs['physical_status'] = ZonePhysicalStatus( | ||
| self._element.physical_status).name.lower() | ||
| attrs['logical_status'] = ZoneLogicalStatus( | ||
| self._element.logical_status).name.lower() | ||
| attrs['definition'] = ZoneType( | ||
| self._element.definition).name.lower() | ||
| attrs['area'] = self._element.area + 1 | ||
| attrs['bypassed'] = self._element.bypassed | ||
| attrs['triggered_alarm'] = self._element.triggered_alarm | ||
| return attrs | ||
|
|
||
| @property | ||
| def temperature_unit(self): | ||
| """Return the temperature unit.""" | ||
| from elkm1_lib.const import ZoneType | ||
| if self._element.definition == ZoneType.TEMPERATURE.value: | ||
| return self._temperature_unit | ||
| return None | ||
|
|
||
| @property | ||
| def unit_of_measurement(self): | ||
| """Return the unit of measurement.""" | ||
| from elkm1_lib.const import ZoneType | ||
| if self._element.definition == ZoneType.TEMPERATURE.value: | ||
| return self._temperature_unit | ||
| if self._element.definition == ZoneType.ANALOG_ZONE.value: | ||
| return 'V' | ||
| return None | ||
|
|
||
| def _element_changed(self, element, changeset): | ||
| from elkm1_lib.const import ZoneLogicalStatus, ZoneType | ||
| from elkm1_lib.util import pretty_const | ||
|
|
||
| if self._element.definition == ZoneType.TEMPERATURE.value: | ||
| self._state = temperature_to_state(self._element.temperature, -60) | ||
| elif self._element.definition == ZoneType.ANALOG_ZONE.value: | ||
| self._state = self._element.voltage | ||
| else: | ||
| self._state = pretty_const(ZoneLogicalStatus( | ||
| self._element.logical_status).name) | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.