Hey,
I’m trying to make a “hey google, channel 156” automation for my TV
- IFTTT “channel #” ==> webhook
- Broadlink remote : channel 1 > delay > channel 5 > delay > channel 6
For now, it’s only working for 0 - 9 channels…
I made a python script that call a HA script “channel_once” for each char of the number with a progressive delay value (because no sleep or wait method in python scripts for some good reasons)
The “channel_once” script is like :
- delay : 00:00:{{delay}}
- script.tv_channel_{{channel}}
The problem is that a same script cannot run multiple times !
Any idea ?