mirror of
https://github.com/home-assistant/core.git
synced 2026-07-13 17:44:45 +01:00
40 lines
763 B
JSON
40 lines
763 B
JSON
{
|
|
"conditions": {
|
|
"is_charging": {
|
|
"condition": "mdi:battery-charging"
|
|
},
|
|
"is_level": {
|
|
"condition": "mdi:battery-unknown"
|
|
},
|
|
"is_low": {
|
|
"condition": "mdi:battery-alert"
|
|
},
|
|
"is_not_charging": {
|
|
"condition": "mdi:battery"
|
|
},
|
|
"is_not_low": {
|
|
"condition": "mdi:battery"
|
|
}
|
|
},
|
|
"triggers": {
|
|
"level_changed": {
|
|
"trigger": "mdi:battery-unknown"
|
|
},
|
|
"level_crossed_threshold": {
|
|
"trigger": "mdi:battery-alert"
|
|
},
|
|
"low": {
|
|
"trigger": "mdi:battery-alert"
|
|
},
|
|
"not_low": {
|
|
"trigger": "mdi:battery"
|
|
},
|
|
"started_charging": {
|
|
"trigger": "mdi:battery-charging"
|
|
},
|
|
"stopped_charging": {
|
|
"trigger": "mdi:battery"
|
|
}
|
|
}
|
|
}
|