Facebook
From Idiotic Mousedeer, 2 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 717
  1. type: custom:vertical-stack-in-card
  2. cards:
  3.   - type: custom:simple-thermostat
  4.     entity: climate.rocku_climate
  5.     decimals: '0'
  6.     step_layout: column
  7.     step_size: '1'
  8.     sensors:
  9.       - entity: input_select.daikin_fan_speed
  10.         icon: mdi:fan
  11.       - entity: sensor.rocku_climate_temperature
  12.         icon: mdi:temperature-celsius
  13.       - entity: sensor.rocku_climate_humidity
  14.         icon: mdi:water-percent
  15.     hide:
  16.       temperature: true
  17.     control:
  18.       hvac:
  19.         'off': true
  20.         cool: true
  21.         heat: false
  22.         heat_cool: false
  23.         dry: true
  24.         fan_only: true
  25.       _names: false
  26.       _headings: false
  27.     style: |
  28.       ha-card {
  29.         --st-font-size-xl: 90px;
  30.         --st-font-size-m: 30px;
  31.         --st-font-size-title: 20px;
  32.         --st-font-size-sensors: 18px;
  33.         --st-spacing: 2px;
  34.       }
  35.     icon: mdi:air-conditioner
  36.   - type: vertical-stack
  37.     cards:
  38.       - type: horizontal-stack
  39.         cards:
  40.           - type: custom:button-card
  41.             entity: input_boolean.daikin_v_swing
  42.             color_type: card
  43.             color: rgb(43, 154, 249)
  44.             icon: mdi:send
  45.             name: V SWING
  46.             size: 20%
  47.           - type: custom:button-card
  48.             entity: input_boolean.daikin_h_swing
  49.             color_type: label-card
  50.             color: rgb(43, 154, 249)
  51.             icon: mdi:snowman
  52.             name: H SWING
  53.             size: 20%
  54.           - type: custom:button-card
  55.             entity: input_select.daikin_fan_speed
  56.             color_type: card
  57.             color: rgb(43, 154, 249)
  58.             icon: mdi:fan-minus
  59.             name: FAN -
  60.             size: 20%
  61.             tap_action:
  62.               action: call-service
  63.               service: input_select.select_previous
  64.               service_data:
  65.                 cycle: false
  66.                 entity_id: input_select.daikin_fan_speed
  67.           - type: custom:button-card
  68.             entity: input_select.daikin_fan_speed
  69.             color_type: card
  70.             color: rgb(43, 154, 249)
  71.             name: FAN +
  72.             size: 20%
  73.             icon: mdi:fan-plus
  74.             tap_action:
  75.               action: call-service
  76.               service: input_select.select_next
  77.               service_data:
  78.                 cycle: false
  79.                 entity_id: input_select.daikin_fan_speed