Clooos/Bubble-Card

Unresponsive bubble-temperature-container (Daikin Skyport)

Closed this issue · 1 comments

Describe the bug
When in auto HVAC Mode, the .bubble-temperature-container is present but uncontrollable.

To Reproduce
Steps to reproduce the behavior:

  1. Add a Daikin Skyport (in my case, an Amana Smart Thermostat) integration & thermostat
  2. Add a climate card for the above
  3. Configuration:
type: custom:bubble-card
card_type: climate
entity: climate.amana
sub_button:
  - name: HVAC modes menu
    select_attribute: hvac_modes
    state_background: false
    show_arrow: false
icon: mdi:home-thermometer-outline
card_layout: large

image

  1. Attempt to change temperature on first temperature control (.bubble-temperature-container)
  2. See error
    image

Expected behavior
.bubble-temperature-container should not show, or should adjust temperature somehow.

Screenshots
Included in To Reproduce

YAML

type: custom:bubble-card
card_type: climate
entity: climate.amana
sub_button:
  - name: HVAC modes menu
    select_attribute: hvac_modes
    state_background: false
    show_arrow: false
icon: mdi:home-thermometer-outline
card_layout: large

Informations (please complete the following information):

  • OS: Linux, macOS 15.1, Windows 11
  • Browser/App: brave, chrome
  • Bubble Card version: v2.3.0-beta.5
  • Home Assistant version: 2024.11.1

Additional context
Workaround for hiding temperature control in auto mode:

styles: |-
  .bubble-temperature-container {
    display: ${ hass.states['climate.amana'].state === 'auto' ? 'none' : 'inherit'  };
  }

nevermind, not needed on beta.6