mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-19 15:26:59 +00:00
Add example (thanks @pavoni)
This commit is contained in:
parent
e24bcbf058
commit
a719fb843a
@ -34,3 +34,24 @@ Configuration variables:
|
|||||||
- **unit_of_measurement** (*Optional*): Defines the units of measurement of the sensor, if any.
|
- **unit_of_measurement** (*Optional*): Defines the units of measurement of the sensor, if any.
|
||||||
- **value_template** (*Optional*): Defines a [template](/getting-started/templating/) to extract a value from the payload.
|
- **value_template** (*Optional*): Defines a [template](/getting-started/templating/) to extract a value from the payload.
|
||||||
|
|
||||||
|
|
||||||
|
## {% linkable_title Examples %}
|
||||||
|
|
||||||
|
In this section you find some real life examples of how to use this sensor.
|
||||||
|
|
||||||
|
### {% linkable_title Sun angle %}
|
||||||
|
|
||||||
|
This example shows the sun angle in the forntend.
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
sensor:
|
||||||
|
platform: template
|
||||||
|
sensors:
|
||||||
|
solar_angle:
|
||||||
|
value_template: '{{ "%+.1f"|format(states.sun.sun.attributes.elevation) }}'
|
||||||
|
friendly_name: 'Sun Angle'
|
||||||
|
unit_of_measurement: '°'
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user