I am rather new to Home Assistant and currently setting up my dashboard. So far, I figured out most of what I want using resources from here or elsewhere on the internet. But now I am stuck.
I have a couple of temperature sensors and want to have one card on the dashboard that cycles through the temperatures, displaying each (along with a name for the sensor) after another.
My first idea for implementation is to have a card that cycles through a list of cards, but I could not find any existing component for this.
These don’t flick through cards, they do allow multiple entities and have a graph! You need HACs for the first one. Stats one is built in. There may be a flick/shuffle card in HACs.
Thank you, HasQT and vingerha for pointing me in the right direction.
I set up an input_number for the counter and an automation with a time pattern that increments the counter. With this, I could use a conditional card.
A bit more complicated than I thought and with a lot of code duplication, but it’s working. Maybe I’ll move the logic into a template that provides the label and temperature based on the counter - that way I would not need all the conditional cards.