Home Assistant定制计时器进度条卡片
Timer Bar Card是一款为Home Assistant设计的自定义卡片,以进度条形式显示定时器剩余时间。支持多种集成,包括原生定时器、开关、太阳和OpenSprinkler等。卡片样式丰富可自定义,还能与脚本和自动化结合使用。经过充分测试,Timer Bar Card适合展示和控制各种定时任务。
A progress bar display for [Home Assistant][home-assistant] timers. Show the time left on your dishwasher, kitchen timer, 3D Printer, sprinklers, time-controlled lights (even plain ol' switches with automations), washing machine, and much more!
I've been really enjoying Paul Bottein's beautiful Mushroom card collection, so I've added new styles to make the card feel at home in your mushroom garden. Jump to Configuring the Mushroom Style for examples.
The card is also well tested. There are 24 tests, and they've helped me catch a few bugs already. 🐞
You may also be interested in these other related but unaffiliated cards:
Jump to: [Integration Support Status] [Turn On/Turn Off Switch] [Styling Examples]<br> [Working with New Integrations] [Examples] [Troubleshooting]
Timer Bar Card is available from [HACS][hacs], the Home Assisstant Community Store.
If you don't have HACS installed, follow the manual installation instructions.
The card displays Home Assistant timers with minimal configuration.
<table><tr><th>YAML Configuration</th><th>Timer Bar Card</th></tr><tr><td><p></p></td><td> <img alt="Screenshot" src="https://raw.githubusercontent.com/rianadon/timer-bar-card/main/images/basic.png" width="445" /> </td></tr></table>type: custom:timer-bar-card entities: - timer.alarm - timer.alarm_two - timer.alarm_three
Most integrations require adding at least one or two additional lines of YAML configuration so the card knows the format of the timer. For more information on how these options work, see Working with New Integrations.
Integration | Status | Extra configuration required |
---|---|---|
Home Assistant timer | supported & tested | no! 🎉 |
Automation-controlled<br>switches | supported & tested | set duration to { fixed: x:xx:xx } |
Sun | supported | See the example |
[OpenSprinkler][opensprinkler] | supported | no! 🎊 (example) |
Amazon Alexa Timer | supported | start_time , end_time , and guess_mode [#22] |
Bambu Lab | supported | active_state , end_time [#143] (♡ @andrewtimosca) |
BMW Connected Drive | supported | active_state , end_time [#60] (♡ @hoeni!) |
Cleverio Sous Vide (Tuya) | supported | multiple: see #67 (thanks @develop-daraf!) |
Daily Schedule | supported | active_state , end_time [#80] (♡ @igorsantos07) |
Google Home Timer | supported | auto-entities card or template entity |
Home Connect † | supported | active_state , end_time [#36] (♡ @rickdeck!) |
HomeWhiz ‡ | supported | multiple: see #121 (thanks @GigiPompieru) |
Irrigation Unlimited | supported | duration and start_time [#5] |
Meater | supported | active_state , end_time [#122] (♡ @Bascht74!) |
Miele | supported | template entity required: see #62 |
Moonraker | supported | mutliple: see #107 (thanks @user74656!) |
OctoPrint | supported | multiple: see #58 (thanks @schmacka!) |
PrusaLink | supported | start+end time, guess_mode [#106] (♡ @deadly667!) |
RainMachine | supported | multiple: see #46 (thanks @shbatm!) |
SmartThings | supported | multiple: see #45 (thanks @TheRedBull205!) |
Tesla | supported | template entity required: see #98 |
ThinQ washer/dryer | supported | configure duration to initial_time [#15] |
ThinQ dishwasher | supported | multiple: see #70 (thanks @ollo69 for the help) |
Google Home Alarm | not really [#18] | template entity required |
† BSH appliances - Bosch/Siemens/Neff/Gagenau. Check out issue #36 for the full card configuration!
‡ Devices connected through the HomeWhiz app: Beko, Grundig, and Arcelik brands
If your configuration isn't listed, follow the instructions in Working with New Integrations. Once you configure it, I'd super appreciate if you could submit an issue with the integration's name and your configuration. You'll get a mention in this document and help others save time. 🌈
This is a common use case of the card, so here's a full example of how you can create a button on your dashboard to turn on a switch entity, count down ten seconds, then turn the entity off. This takes a few different components in Home Assistant: The Timer Bar Card, a Script, and an Automation (optional)
While the script is shown in YAML mode, you can alternatively create it in the visual editor (the Scripts tab in the same area as Automations).
<table><tr><th>Card Configuration</th><th>Script Configuration</th></tr><tr><td><p></p></td><td><p></p>type: custom:timer-bar-card entities: - switch.cat_toy duration: script: script.switch_on_10s tap_action: action: call-service service: script.switch_on_10s hold_action: action: more-info
</td></tr></table>alias: Turn the switch on then off sequence: - service: homeassistant.turn_on data: {} target: entity_id: switch.cat_toy - delay: "00:00:10" - service: homeassistant.turn_off data: {} target: entity_id: switch.cat_toy mode: single # also consider restart
In this example, the switch's id is switch.cat_toy
and the script's id is script.switch_on_10s
.
The card is given two actions: clicking/tapping it will calll the script, and holding it will bring up the switch entity's information. The script uses the Call Service action to turn on and off the switch.
⚠️ Make sure that if you're creating the script from the UI, you do not rename the delay action. The delay needs to have the duration at the end of its name (e.g.
delay action 0:01:12
)—this is how the card knows how long the timer is. You shouldn't need to rename the action in most cases, except if the duration is really small (sometimes the automatic name isdelay for 10 seconds
which does not parse).
The script's name is parsed because finding its true duration would require the card to independently access the Home Assistant API rather than using the shared state. I'm trying to keep this simple.
Using a script has several advantages:
However, you may wish to ensure that even under manual operation, the switch is never turned on for more than ten seconds.
In this case, you can add an automation that is trigggered when switch.cat_toy
's state changes to on and that calls the script.turn_on
service with entity script.script_on_10s
.
If both the automation and the button are going to keep the switch on for the same amount of time, you can simplify the setup and not use a script.
Add the delay and switch off services to the automation (or set the automation to only trigger when the switch is on for 10s) and change the card's duration: script
option to duration: fixed: "00:00:10"
.
Also change the tap action to either call the switch's turn on service or toggle the switch. If you change the automation's delay in the future, make sure to update the card too.
</td><td><p></p>type: custom:timer-bar-card entities: - switch.cat_toy duration: fixed: 00:00:10 tap_action: action: toggle hold_action: action: more-info
</td></tr></table>alias: Turn the switch off after it is turned on trigger: - platform: state entity_id: switch.cat_toy to: "on" condition: [] action: - delay: "00:00:10" - service: homeassistant.turn_off data: {} target: entity_id: switch.cat_toy mode: single # also consider restart
一站式AI创作平台
提供 AI 驱动的图片、视频生成及数字人等功能,助力创意创作
AI办公助手,复杂任务高效处理
AI办公助手,复杂任务高效处理。办公效率低?扣子空间AI助手支持播客生成、PPT制作、网页开发及报告写作,覆盖科研、商业、舆情等领域的专家Agent 7x24小时响应,生活工作无缝切换,提升50%效率!
AI数字人视频创作平台
Keevx 一款开箱即用的AI数字人视频创作平台,广泛适用于电商广告、企业培训与社媒宣传,让全球企业与个人创作者无需拍摄剪辑,就能快速生成多语言、高质量的专业视频。
AI辅助编程,代码自动修复
Trae是一种自适应的集成开发环境(IDE),通过自动化和多元协作改变开发流程。利用Trae,团队能够更快速、精确地编写和部署代码,从而提高编程效率和项目交付速度。Trae具备上下文感知和代码自动完成功能,是提升开发效率的理想工具。
AI小说写作助手,一站式润色、改写、扩写
蛙蛙写作—国内先进的AI写作平台,涵盖小说、学术、社交媒体等多场景。提供续写、改写、润色等功能,助力创作者高效优化写作流程 。界面简洁,功能全面,适合各类写作者提升内容品质和工作效率。
全能AI智能助手,随时解答生活与工作的多样问题