Skip to content

Instantly share code, notes, and snippets.

@SimedruF
Created April 8, 2022 14:31
Show Gist options
  • Save SimedruF/927163bbb0475156acf5816ba03229c9 to your computer and use it in GitHub Desktop.
Save SimedruF/927163bbb0475156acf5816ba03229c9 to your computer and use it in GitHub Desktop.
sensors_template.yaml
- platform: template
sensors:
window_state:
friendly_name: "Window State"
unit_of_measurement: "State"
entity_id: sensor.window_state
value_template: >-
{% set mapper = {
'5' : 'Open',
'9' : 'Closed'
} %}
{% set state = states.sensor.gatewayrf.state %}
{{ mapper[state] if state in mapper else 'Unknown' }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment