75 lines
1.9 KiB
YAML
75 lines
1.9 KiB
YAML
- id: roborock_smart_cleaning
|
|
alias: Roborock Smart Cleaning
|
|
mode: single
|
|
|
|
trigger:
|
|
- id: house_empty
|
|
platform: state
|
|
entity_id: binary_sensor.family_presence
|
|
to: "off"
|
|
for: "00:30:00"
|
|
|
|
- id: someone_home
|
|
platform: state
|
|
entity_id: binary_sensor.family_presence
|
|
to: "on"
|
|
|
|
- id: midnight
|
|
platform: time
|
|
at: "00:00:00"
|
|
|
|
action:
|
|
- choose:
|
|
|
|
# 🔹 Reset daglig tæller ved midnat
|
|
- conditions:
|
|
- condition: trigger
|
|
id: midnight
|
|
sequence:
|
|
- service: input_number.set_value
|
|
target:
|
|
entity_id: input_number.roborock_auto_runs_today
|
|
data:
|
|
value: 0
|
|
|
|
# 🔹 Start rengøring hvis huset har været tomt i 30 min
|
|
- conditions:
|
|
- condition: trigger
|
|
id: house_empty
|
|
|
|
- condition: numeric_state
|
|
entity_id: input_number.roborock_auto_runs_today
|
|
below: 2
|
|
|
|
- condition: state
|
|
entity_id: vacuum.roborock_s8_pro_ultra
|
|
state: docked
|
|
|
|
- condition: numeric_state
|
|
entity_id: vacuum.roborock_s8_pro_ultra
|
|
attribute: battery_level
|
|
above: 20
|
|
|
|
sequence:
|
|
- service: button.press
|
|
target:
|
|
entity_id: button.roborock_s8_pro_ultra_kokken_bryggers
|
|
|
|
- service: input_number.increment
|
|
target:
|
|
entity_id: input_number.roborock_auto_runs_today
|
|
|
|
# 🔹 Stop robotten hvis nogen kommer hjem
|
|
- conditions:
|
|
- condition: trigger
|
|
id: someone_home
|
|
|
|
- condition: state
|
|
entity_id: vacuum.roborock_s8_pro_ultra
|
|
state: cleaning
|
|
|
|
sequence:
|
|
- service: vacuum.return_to_base
|
|
target:
|
|
entity_id: vacuum.roborock_s8_pro_ultra
|