enriqg9 / dual-thermostat

Dual Thermostat Lovelace Card
MIT License
51 stars 20 forks source link

Controls Not Displaying #23

Closed northrup closed 5 years ago

northrup commented 5 years ago

Here's what I'm seeing in the Lovelace UI: image

and here's the code that I have:

      - type: custom:dual-thermostat
        name: 1st Floor
        entities:
          - entity: climate.honeywell_t6_1_cooling
            type: cool
          - entity: climate.honeywell_t6_1_heating
            type: heat
        #fan_control: true

If I enable fan_control the entire thermostat object disappears from the Lovelace UI.

I'm running Home Assistant 0.101.3 and the latest version of the dual-thermostat code that is in the dst folder.

enriqg9 commented 5 years ago

Check the dev-tools->states for climate.honeywell_t6_1_cooling and see the available hvac_modes for your thermostat, the card renders the available modes from that object.

northrup commented 5 years ago

@enriqg9 it all looks good to me from the states standpoint:

hvac_modes: heat,off,cool
current_temperature: 70
min_temp: 45
max_temp: 95
temperature: 70
fan_mode: Auto Low
fan_modes: On Low,Circulate,Auto Low
hvac_action: idle
preset_mode: none
preset_modes: Heat Econ,Cool Econ,none
aux_heat: off
node_id: 11
value_index: 2
value_instance: 1
value_id: 72057594227769378
fan_action: Idle
friendly_name: 1st Floor Cooling
supported_features: 89
northrup commented 5 years ago

@enriqg9 I found out what the issue was, and it's not your code. Mine was a caching issue where the javascript wasn't being invalidated on the local browser as being old and I had to completely flush the browser cache and reload the page. Loading my Home Assistant site in a private browser tab helped me to diagnose this. Thanks for the help! Love you work! ❤️