Tab on Hassio

Hi Guys

Just wanted to check if there is a better way to have the configuration done on hassio.
I was playing with the groups and i have added the device in groups just to make it a little more pritty
But what i want to achieve is different tabs with different information
Like in the picture below the weather is a tab but i only see small icons on the top rather than the big weather data that i get with icon when i turn off the view

Is there a way to enable groups with in tab’s rather then just the bubb

le icon on the top

Add them to a group then add that group to the tab group.

1 Like

Iam not following you
Here is the group file
Can u please explain how i do it

weather:
name: Weather
view: yes
entities:
- sun.sun
- sensor.dark_sky_icon
- sensor.dark_sky_summary
- sensor.dark_sky_humidity
- sensor.dark_sky_daily_low_temperature
- sensor.dark_sky_daily_high_temperature

and in config i have this

group: !include groups.yaml

Easiest way I can think to explain it…

The tabs across the top are ‘view’ groups.

The cards are not ‘view’ groups.

You can add the card groups to the view groups.

So, you create a group called weather card, a group called weather view and put weather card on the weather view:

group:
  Weather card:
    - sensor.dark_sky_apparent_temperature
    - sensor.dark_sky_cloud_coverage
    - sensor.dark_sky_daily_high_apparent_temperature
    [etc]

  Weather View:
    view: yes
    entities:
      - group.weather_card
1 Like

Add them to a group…

weather_sensors:
name: Weather Sensors
view: no
entities:
- sun.sun
- sensor.dark_sky_icon
- sensor.dark_sky_summary
- sensor.dark_sky_humidity
- sensor.dark_sky_daily_low_temperature
- sensor.dark_sky_daily_high_temperature

Then add that group to the weather group...
weather:
name: Weather
view: yes
entities:
- group.weather_sensors
1 Like

Beat ya :laughing:

2 Likes

Thx a lot guys trying it right now

That worked
One more question is there a way to remove the details from the main window
It is kind of getting messy there
I mean since i have have weather in a different tab can it be remove completely from the home Tab

Yep, and if you want to get rid of everything but what you put there, just call the home view default_view:

1 Like