I have a time pattern automation every 5 mins. It’s has a condition once a sensor is above a value to announce that value.
When I run action it’s fine, when it triggers from automation it stutters and repeats itself about 30 times
I have other tts automations without time pattern and it’s fine.
alias: Amber 99 Announce price over 65c every 5 min
description: Actions when amber price is in red (high prices) zone
trigger:
- platform: time_pattern
minutes: /5
hours: '*'
seconds: '*'
condition:
- condition: numeric_state
entity_id: sensor.amber_general_price
above: '0.649'
action:
- service: tts.cloud_say
data:
entity_id:
- media_player.kitchen
message: >-
Power price is {{(states('sensor.amber_general_price')| float * 100) |
round(0)}} cents
mode: single
Any help would be great