27 lines
965 B
YAML
27 lines
965 B
YAML
- type: grid
|
|
column_span: 3
|
|
cards:
|
|
- type: heading
|
|
heading: Attic Climate
|
|
- type: markdown
|
|
content: >
|
|
🌡️ **Temperature**
|
|
|
|
{{ states('sensor.attic_climate_sensor_attic_climate_sensor_temperature') | float(0) | round(1) }} °F
|
|
|
|
💧 **Humidity**
|
|
|
|
{{ states('sensor.attic_climate_sensor_attic_climate_sensor_humidity') | float(0) | round(1) }} %
|
|
|
|
🌀 **Pressure**
|
|
|
|
{{ states('sensor.attic_climate_sensor_attic_climate_sensor_barometric_pressure') | float(0) | round(2) }} inHg
|
|
|
|
🔋 **Battery**
|
|
|
|
{{ states('sensor.attic_climate_sensor_attic_climate_sensor_battery_percentage') | int(0) }}%
|
|
|
|
🕐 **Last updated**
|
|
|
|
{{ states.sensor.attic_climate_sensor_attic_climate_sensor_temperature.last_changed | as_timestamp | timestamp_custom('%-I:%M %p, %b %-d') }}
|