|
发表于 2023-2-10 09:24:01
|
显示全部楼层
这个是我的配置:
type: custom:vertical-stack-in-card
styles:
'--chip-box-shadow': none
'--chip-background': none
'--chip-spacing': 0
cards:
- type: custom:mushroom-chips-card
chips:
- type: template
content: 客厅
icon: mdi:home
- type: template
icon: mdi:thermometer
content: >
{{ state_attr('sensor.climate_sensor_livingroom_temperature',
'temperature')|round(1) }}℃
- type: template
icon: mdi:water-percent
content: >
{{ state_attr('sensor.climate_sensor_livingroom_temperature',
'humidity')|round(1) }}%
- type: conditional
conditions:
- entity: binary_sensor.touch_sensor_window_livingroom_contact
state: 'on'
chip:
type: template
content: 客厅窗
icon: mdi:window-open
icon_color: blue
- type: custom:mushroom-climate-card
entity: climate.01_livingroom
show_temperature_control: true
hvac_modes:
- 'off'
- heat
- cool
collapsible_controls: false
tap_action:
action: more-info
hold_action:
action: none
double_tap_action:
action: toggle
layout: horizontal
name: 客厅控温 |
|