Please find below a dashboard yaml code that will display weather and NetAtmo statistics on the Home Assistant dashboard.

For more details on the NetAtmo Smart Home Weather Station, please view their product page: https://www.netatmo.com/en-eu/smart-weather-station

Dashboard Visual Example

YAML

type: vertical-stack
cards:
  - type: markdown
    content: <h1>Weather</h1>
  - show_current: true
    show_forecast: false
    type: weather-forecast
    entity: weather.openweathermap
  - show_current: false
    show_forecast: true
    type: weather-forecast
    entity: weather.openweathermap
  - show_name: false
    show_icon: true
    show_state: true
    type: glance
    entities:
      - entity: sensor.outdoor_module_temperature
      - entity: sensor.outdoor_module_humidity
      - entity: sensor.outdoor_module_battery
    title: Outdoor
  - show_name: false
    show_icon: true
    show_state: true
    type: glance
    entities:
      - entity: sensor.weather_station_temperature
      - entity: sensor.weather_station_humidity
      - entity: sensor.weather_station_air_quality
      - entity: sensor.weather_station_carbon_dioxide
    title: Indoor


  • No labels