本帖最后由 消逝 于 2024-9-15 20:50 编辑
主UI教程链接:HA彩平图UI分享(2024-08-10更新)-保姆级教程!
2024-09-13更新:水暖毯的【-】【+】加减号修改为:调整目标温度的大小
- type: custom:button-card
style:
top: 50%
left: 25%
template: shuinuantan
variables:
entity: switch.other_shuinuantan #水暖毯实体
shidu: sensor.shidu_zhuwo #湿度显示
number: number.shuinuantan_mubiaowendu #目标温度
a3: switch.shuinuantan_fangdong #防冻模式开关
a4: switch.shuinuantan_fangtangshang #防烫伤模式开关
a5: select.shuinuantan_shuiwei #水位显示
2024-09-13更新:净化器的【-】【+】加减号修改为:调整最爱模式的风力大小
- type: custom:button-card
template: fan
variables:
entity: fan.jinghuaqi_zhuwo #净化器实体
number: number.jinghuaqi_zhuwo #净化器最爱模式等级实体(Favorite Fan Level)
style:
top: 50%
left: 25%
2024-09-12更新:净化器主体部分代码简化(去除温度、湿度、pm实体的调用)
以下正文:仿HA官方空调加湿器界面。
button_card制作净化器:无需额外模拟实体、额外脚本等
button_card制作浴霸(独立开关式):需要模拟实体支持,附模拟实体文件。
button_card制作水暖毯界面:无需额外模拟实体、额外脚本等
效果图如下:
简化代码、去除template模拟实体、去除scripts脚本
button_card_templates及后面内容:为button模板内容,放在代码最后面
- type: custom:button-card
style:
top: 50%
left: 25%
template: fan
variables:
entity: fan.jinghuaqi_keting ## 净化器实体
wendu: sensor.jinghuaqi_keting_wendu ## 净化器温度
shidu: sensor.jinghuaqi_keting_shidu ## 净化器湿度
pm25: sensor.jinghuaqi_keting_pm25 ## 净化器pm2.5
name: 客厅净化器 ## 净化器名字
|