I switched from using Polyglot Cloud to using a local copy of Home Assistant with the ISY Integration installed. Although HA recognizes my ISY994i and all of its devices, I've been trying to use HA to replace some of the external features of the Polygot Cloud around tracking the calendar month / date / year, and the current outside temperature.
I've created a couple of variables on the ISY but have been unable to get the isy.set_variable service call to work - instead it always throws the error: coroutine raised StopIteratio
I'm running HA Core 2022.5.0 with HA Frontend version 20220504 and with ISY firmware 5.3.3 and the script I'm using is below:
service: isy994.set_variable
data:
init: true
value: 64
name: CurrentMonth
My eventual goal is to replace the "value: 64" line with something similar to "value: now().strftime('%-m')", but since the set_variable call does not work with a simple integer I'm stuck. Does anyone have any suggestions about what could be going on here?