Custom thermostat

Hi All.

Struggling to get my head around how the custom thermostat works, basically I want the boost buttons below the thermostat to be next to preset, below is how it currently looks


My current coding is


type: vertical-stack
cards:
  - type: horizontal-stack
    cards:
      - type: custom:simple-thermostat
        entity: climate.home
        header: false
  - type: horizontal-stack
    cards:
      - type: button
        name: Boost 1HR
        tap_action:
          action: call-service
          service: hive.boost_heating_on
          service_data:
            time_period: '01:00:00'
            temperature: 20.5
          target:
            entity_id: climate.home
        show_name: true
        icon: mdi:clock-time-twelve
        show_icon: true
        show_state: true
        icon_height: 30px
      - type: button
        name: Boost 30 MIN
        tap_action:
          action: call-service
          service: hive.boost_heating_on
          service_data:
            time_period: '00:30:00'
            temperature: 20.5
          target:
            entity_id: climate.home
        show_name: true
        icon: mdi:clock-time-six
        show_icon: true
        show_state: true
        icon_height: 30px
      - type: button
        name: Boost OFF
        tap_action:
          action: call-service
          service: hive.boost_heating_off
          service_data:
            entity_id: climate.home
        show_name: true
        icon: mdi:stop-circle
        show_icon: true
        show_state: true
        icon_height: 30px

Thanks all

@Ildar_Gabdullin Can you help ? Thanks.

Try using stack-in-card instead of vertical-stack

1 Like

Thanks, not completely what I was after but that has made a pretty tidy job of things :slight_smile: