timer + variable
Posted: Thursday 26 April 2018 10:39
Hello, i've currently a script triggered at 7.45 during mon-sat and at 8.45 on sunday. I've found a script here on the forum for set a variable (string) with the info if today is a working day or a bank-holiday and i want to let use my blind script that variable info.
The actual trigger is that:
its possible to use in conjunction in this way?
The actual trigger is that:
Code: Select all
on = {
timer = {
'at 22:30',
'at 7:45 on mon,tue,wed,thu,fri,sat',
'at 8:45 on sun'
},
its possible to use in conjunction in this way?
Code: Select all
on = {
timer = {
'at 22:30',
'at 7:45 on (day == working_day),
'at 8:45 on (day == holiday)'
},