I made an âeasyâ button for my wife with macro buttons to select parts of the house and send the vacuum to clean them. However, for some reason I cannot figure out why when I press the button and try to execute the âstart_vacuumâ function it doesnât actually do anything.
type: entities
entities:
- card:
entity: input_button.start_vacuum
row: true
type: custom:restriction-card
restrictions:
confirm:
text: Confirm. Pigpen will clean selected areas.
block:
text: Pigpen must be docked and charged before starting.
condition:
operator: '!='
value: docked
entity: vacuum.valetudo_pigpen
If I just put the button in an entities list, like this it works great:
I have a configuration for boolean that I would like to lock at time intervals.
No matter what Ive tried it stays locked.
can anyone help with this please.
here is the code.
type: custom:restriction-card
card:
entity: input_boolean.chore_1
name: Chore 1 Name
restrictions:
block:
text: Chore not allowed at this time
condition:
condition: or
conditions:
- condition: time
after: '07:00:00'
before: '09:00:00'
- condition: time
after: '14:00:00'
before: '15:00:00'
row: true