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
一键生成PPT和Word,让学习生活更轻松
讯飞智文是一个利用 AI 技术的项目,能够帮助用户生成 PPT 以及各类文档。无论是商业领域的市场分析报告、年度目标制定,还是学生群体的职业生涯规划、实习避坑指南,亦或是活动策划、旅游攻略等内容,它都能提供支持,帮助用户精准表达,轻松呈现各种信息。
深度推理能力全新升级,全面对标OpenAI o1
科大讯飞的星火大模型,支持语言理解、知识问答和文本创作等多功能,适用于多种文件和业务场景,提升办公和日常生活的效率。讯飞星火是一个提供丰富智能服务的平台,涵盖科技资讯、图像创作、写作辅助、编程解答、科研文献解读等功能,能为不同需求的用户提供便捷高效的帮助,助力用户轻松获取信息、解决问题,满足多样化使用场景。
一种基于大语言模型的高效单流解耦语音令牌文本到语音合成模型
Spark-TTS 是一个基于 PyTorch 的开源文本到语音合成项目,由多个知名机构联合参与。该项目提供了高效的 LLM(大语言模型)驱动的语音合成方案,支持语音克隆和语音创建功能,可通过命令行界面(CLI)和 Web UI 两种方式使用。用户可以根据需求调整语音的性别、音高、速度等参数,生成高质量的语音。该项目适用于多种场景,如有声读物制作、智能语音助手开发等。
字节跳动发布的AI编程神器IDE
Trae是一种自适应的集成开发环境(IDE),通过自动化和多元协作改变开发流程。利用Trae,团队能够更快速、精确地编写和部署代码,从而提高编程效率和项目交付速度。Trae具备上下文感知和代码自动完成功能,是提升开发效率的理想工具。
AI助力,做PPT更简单!
咔片是一款轻量化在线演示设计工具,借助 AI 技术,实现从内容生成到智能设计的一站式 PPT 制作服务。支持多种文档格式导入生成 PPT,提供海量模板、智能美化、素材替换等功能,适用于销售、教师、学生等各类人群,能高效制作出高品质 PPT,满足不同场景演示需求。
选题、配图、成文,一站式创作,让内容运营更高效
讯飞绘文,一个AI集成平台,支持写作、选题、配图、排版和发布。高效生成适用于各类媒体的定制内容,加速品牌传播 ,提升内容营销效果。
专业的AI公文写作平台,公文写作神器
AI 材料星,专业的 AI 公文写作辅助平台,为体制内工作人员提供高效的公文写作解决方案。拥有海量公文文库、9 大核心 AI 功能,支持 30 + 文稿类型生成,助力快速完成领导讲话、工作总结、述职报告等材料,提升办公效率,是体制打工人的得力写作神器。
OpenAI Agents SDK,助力开发者便捷使用 OpenAI 相关功能。
openai-agents-python 是 OpenAI 推出的一款强大 Python SDK,它为开发者提供了与 OpenAI 模型交互的高效工具,支持工具调用、结果处理、追踪等功能,涵盖多种应用场景,如研究助手、财务研究等,能显著提升开发效率,让开发者更轻松地利用 OpenAI 的技术优势。
高分辨率纹理 3D 资产生成
Hunyuan3D-2 是腾讯开发的用于 3D 资产生成的强大工具,支持从文本描述、单张图片或多视角图片生成 3D 模型,具备快速形状生成能力,可生成带纹理的高质量 3D 模型,适用于多个领域,为 3D 创作提供了高效解决方案。
一个具备存储、管理和客户端操作等多种功能的分布式文件系统相关项目。
3FS 是一个功能强大的分布式文件系统项目,涵盖了存储引擎、元数据管理、客户端工具等多个模块。它支持多种文件操作,如创建文件和目录、设置布局等,同时具备高效的事件循环、节点选择和协程池管理等特性。适用于需要大规模数据存储和管理的场景,能够提高系统的性能和可靠性,是分布式存储领域的优质解决方案。
最新AI工具、AI资讯
独家AI资源、AI项目落地
微信扫一扫关注公众号