Weather Group view showing As Badges?

Hi,

I’m new to HASS, and I’ve got the following problem.

I Created a Weather group view that is showing in a tab but as badges.

I would like it to be viewed as cards.

This is my group config:

daily_forecast:
name: Clima
view: yes
entities:
- sensor.pws_weather_1d_metric
- sensor.pws_temp_high_1d_c
- sensor.pws_temp_low_1d_c
- sensor.pws_weather_1n_metric
- sensor.pws_weather_2d_metric
- sensor.pws_temp_high_2d_c
- sensor.pws_temp_low_2d_c
- sensor.pws_weather_2n_metric
- sensor.pws_weather_3d_metric
- sensor.pws_temp_high_3d_c
- sensor.pws_temp_low_3d_c
- sensor.pws_weather_3n_metric
- sensor.pws_weather_4d_metric
- sensor.pws_temp_high_4d_c
- sensor.pws_temp_low_4d_c
- sensor.pws_weather_4n_metric

The other problem I have is that in the main view the sensor entities that are in the above group aren’t hidden as it is supposed to happen.

Any Help Please?

Set

view: false

Then make another group with

view: true
entities:
  - group.first_group

You will then get one card that has all the sensors listed out , much like you interior lights card, but with sensor data instead of the switches.

2 Likes

That did the trick! (Y)

Thank you :smile:

you’re welcome. glad I could help!!