- 积分
- 151
- 金钱
- 127
- 威望
- 0
- 贡献
- 0
- HASS币
- 10
注册会员

- 积分
- 151
- 金钱
- 127
- HASS币
- 10
|

楼主 |
发表于 2025-1-15 18:01:03
|
显示全部楼层
Available Devices:
### 可用设备展示
```csv
entity_id,name,state,category
{% set entities = [
{"entity_id": "sensor.iphone_battery_level", "name": "路由", "category": "设备", "description": "iPhone 电池电量"},
{"entity_id": "sensor.xxx_brightenerweight", "name": "洗碗机亮碟剂剩余重量", "category": "洗碗机", "description": "洗碗机亮碟剂剩余重量"},
{"entity_id": "sensor.xxx_totalwashcycle", "name": "洗碗机总洗涤次数", "category": "洗碗机", "description": "洗碗机总洗涤次数"},
] %}
{%- for entity in entities %}
{{- entity.entity_id }},{{ entity.name }},{{ states(entity.entity_id) }},{{ entity.category }}
{%- endfor %} |
|