Skip to content

Instantly share code, notes, and snippets.

@GuySie
Created December 13, 2021 20:36
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Night State template for Home Assistant's configuration.yaml to create a 1/0 night entity
sensor:
- platform: template
sensors:
nightstate:
friendly_name: Night State
value_template: "{% if is_state('sun.sun', 'below_horizon') %}1{% else %}0{% endif %}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment