14 lines
376 B
YAML
14 lines
376 B
YAML
---
|
|
sensor:
|
|
- unique_id: sun_next_rising
|
|
name: "sun_next_rising"
|
|
device_class: timestamp
|
|
state: >
|
|
{{ as_timestamp(state_attr("sun.sun", "next_rising")) | timestamp_local }}
|
|
|
|
- unique_id: sun_next_setting
|
|
name: sun_next_setting
|
|
device_class: timestamp
|
|
state: >
|
|
{{ as_timestamp(state_attr("sun.sun", "next_setting")) | timestamp_local }}
|