Okay this started as a question, but I have now figured out a way to do it so I’ll share in case anyone else wants to do the same.
I’m trying to send the value of a sensor from my weather station to Blue Iris to overlay on one of my cameras. This is what I cobbled together.
in configuration.yaml I have:
shell_command:
temptobi: 'curl "http://192.168.1.105:81/admin?macro=6&text={{ states.sensor.smartweatherudp_temperature.state }}°F"'
and my automation is:
alias: Temp To BI
trigger:
minutes: '/15'
platform: time_pattern
condition: []
action:
- service: shell_command.temptobi
I built it with the automation editor in 93.1 and it didn’t work. Took me quite a while to figure out that you need the / before the 15 for minutes AND I had to remove hours and seconds from the automation.
I could likely remove the condition line as well since there aren’t any here.
Hope someone can learn something from this.
Now it seems to work well.