Lozus
1
Hello!
What wrong with my automation? I can trigger it manually, but it doesn’t start by time pattern.
Thank You!
- id: ‘test_27’
alias: TEST_27
description: ‘’
trigger:
- platform: time_pattern
minutes: ‘10’
condition: []
action:
- service: homeassistant.reload_config_entry
data: {}
target:
device_id: 8e10d0c0b77522e631cbef584d035192
entity_id: sensor.temperature_humidity_sensor_2_temperature
mode: single
koying
(Chris B)
2
You’re asking to run the automation once per hour, at past 10.
Is it what you’re trying to achieve?
Dujith
(Charles Evers)
3
Like @koying said. This will only run each hour at 10 past. If you want it to trigger every 10 minutes then it would be: minutes: "/10"
2 Likes
Lozus
4
I want to start it every 10 minutes.
Troon
(Troon)
5
Then use:
- platform: time_pattern
minutes: "/10"
…and please format your code properly in posts. See here: How to help us help you - or How to ask a good question
1 Like