What does skip_tabs setting do? What tabs would we skip? If we have to configure the card?
Hello,
i got 2 cards is there a way to create an automation, where i can swipe at the afternoon to card 2?
i found a way to get the right page for different times of day with:
{% if 1 <= as_timestamp(states(‘sensor.date_time_iso’)) | timestamp_custom(‘%H’) | int <= 12 %}
1
{% elif 12 <= as_timestamp(states(‘sensor.date_time_iso’)) | timestamp_custom(‘%H’) | int <= 18 %}
2
{% elif 18 <= as_timestamp(states(‘sensor.date_time_iso’)) | timestamp_custom(‘%H’) | int <= 23 %}
3
{% endif %}
how can i use this output with start_card ?
start_card: {% if 1 <= as_timestamp(states(‘sensor.date_time_iso’)) | timestamp_custom(‘%H’) | int <= 12 %} 1 {% elif 12 <= as_timestamp(states(‘sensor.date_time_iso’)) | timestamp_custom(‘%H’) | int <= 18 %} 2 {% elif 18 <= as_timestamp(states(‘sensor.date_time_iso’)) | timestamp_custom(‘%H’) | int <= 23 %} 3 {% endif %}
isn’t working
i create a template but how can i use this with start_card: ?
start_card: {{states(‘sensor.swipe_card_time_of_day’)}}
isnt working it shows
- type: custom:swipe-card
start_card:
‘[object Object]’: null
that’a pretty dope!
Really cool idea, thank you for your effort! I would like to ask a question, perhaps my understanding is not sufficient. Maybe it’s also a feature you’d like to integrate at some point:
I have a series of buttons that I use to switch lights. I would like to group these. For example, one group for the ground floor, one for the upper floor and one for the garden. It would be great if I could completely swipe the marked area. Is this already possible current? Unfortunately I couldn’t find anything about it.
Put your button cards in a grid card or horizontal stack card. The swiper will move those cards as a group.