Created
October 13, 2025 09:13
-
-
Save XpycTee/7c91e4dfad24fc76285b260fc68ff8f3 to your computer and use it in GitHub Desktop.
Smart Charging (domain: light)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| blueprint: | |
| name: Smart Charging (light) ππ± | |
| description: > | |
| Automatically turns the socket on and off for phone charging. | |
| If the battery level is low β the socket turns on, or based on a schedule. | |
| When the battery reaches 100%, the socket turns off. | |
| domain: automation | |
| input: | |
| charge_socket: | |
| name: Charging Socket π | |
| description: 'The socket where your phone charger is plugged in' | |
| selector: | |
| entity: | |
| domain: | |
| - light | |
| multiple: false | |
| phone_battery_level: | |
| name: Phone Battery Level π | |
| description: 'Battery level sensor from the Home Assistant companion app on your phone' | |
| selector: | |
| entity: | |
| domain: | |
| - sensor | |
| multiple: false | |
| min_battery_level: | |
| name: Minimum Battery Level β οΈ | |
| description: 'Minimum battery level at which charging turns on' | |
| default: 20 | |
| selector: | |
| number: | |
| min: 0.0 | |
| max: 49.0 | |
| step: 1.0 | |
| mode: slider | |
| unit_of_measurement: '%' | |
| max_battery_level: | |
| name: Maximum Battery Level β | |
| description: 'Maximum battery level after which scheduled charging wonβt turn on' | |
| default: 80 | |
| selector: | |
| number: | |
| min: 50.0 | |
| max: 100.0 | |
| step: 1.0 | |
| mode: slider | |
| unit_of_measurement: '%' | |
| manual_charge_time_start: | |
| name: Scheduled Charging Start Time π | |
| description: 'Time when charging is allowed to start if battery is below the max threshold' | |
| default: '6:00:00' | |
| selector: | |
| time: {} | |
| manual_charge_time_stop: | |
| name: Scheduled Charging Stop Time π | |
| description: 'Time by which scheduled charging must stop' | |
| default: '8:00:00' | |
| selector: | |
| time: {} | |
| trigger: | |
| - platform: time_pattern | |
| minutes: '*' | |
| condition: [] | |
| action: | |
| - choose: | |
| - conditions: | |
| - condition: numeric_state | |
| entity_id: !input phone_battery_level | |
| above: 99 | |
| sequence: | |
| - action: light.turn_off | |
| metadata: {} | |
| data: {} | |
| target: | |
| entity_id: !input charge_socket | |
| - conditions: | |
| - condition: or | |
| conditions: | |
| - condition: and | |
| conditions: | |
| - condition: numeric_state | |
| entity_id: !input phone_battery_level | |
| below: !input max_battery_level | |
| - condition: time | |
| after: !input manual_charge_time_start | |
| before: !input manual_charge_time_stop | |
| - condition: numeric_state | |
| entity_id: !input phone_battery_level | |
| below: !input min_battery_level | |
| sequence: | |
| - action: light.turn_on | |
| metadata: {} | |
| data: {} | |
| target: | |
| entity_id: !input charge_socket | |
| mode: single |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment