Weather Group

Hello,

I am tryin to group my weather entities, but when i reboot the system, appears a message

Capturar

And my configuration.yaml is

sensor:
  - platform: yr
  - platform: wunderground
    api_key: xxxxxxxxx
    lang: BR
    pws_id: ISOPAULO101
    monitored_conditions:
      - weather_1d_metric
      - temp_high_1d_c
      - temp_c
      - temp_low_1d_c
      - precip_today_metric
      - feelslike_c
      
group:
  Main_Weather:
    name: Tempo
    entities:
      - sensor.pws_weather_1d_metric
      - sensor.pws_temp_high_1d_c
      - sensor.pws_temp_c
      - sensor.pws_temp_low_1d_c
      - sensor.pws_precip_today_metric
      - sensor.pws_feelslike_c

Can you help me with it?

The icons appear normally.

Capturcar

And I want to show the weather like this

view: no
to a group will make sensors show up in cards vs badges.

That’s just plane old wrong. view: yes will turn the panel into a separate tab at the top of the Overview. view: no will keep it in the format you want. see documentation:

You are getting a config error because you are using capitals when you shouldn’t be:

This is the correct config format:

group:
  main_weather:  # <--- CANT USE UPPER CASE
    name: Tempo
    entities:
      - sensor.pws_weather_1d_metric
      - sensor.pws_temp_high_1d_c
      - sensor.pws_temp_c
      - sensor.pws_temp_low_1d_c
      - sensor.pws_precip_today_metric
      - sensor.pws_feelslike_c

Thanks petro… it worked

1 Like

Lol sorry long day I was plain ol wrong looked up wrong group in my yaml.

1 Like