Search found 4 matches

by mk7
25 Feb 2018, 09:49
Forum: ESP Easy: Software
Topic: rules problems with %systime% and %syshour%
Replies: 6
Views: 5064

Re: rules problems with %systime% and %syshour%

if %syshour% * 60 + %sysmin% > 520 // 8-40
SendToHTTP 192.168.1.100,80,/check?%syshour%
endif

also does not work for me

what may be wrong with sys(time|hour|min) calculation
by mk7
25 Feb 2018, 09:15
Forum: ESP Easy: Software
Topic: rules problems with %systime% and %syshour%
Replies: 6
Views: 5064

Re: rules problems with %systime% and %syshour%

1 syshour * 60 + sysmin to avoid collisions ?

2 rules tutorial https://www.letscontrolit.com/wiki/inde ... rial_Rules example for systime

If %systime% > 19:00:00
Gpio,16,1
Endif

my example is a copy example above ...
by mk7
25 Feb 2018, 08:44
Forum: ESP Easy: Software
Topic: rules problems with %systime% and %syshour%
Replies: 6
Views: 5064

Re: rules problems with %systime% and %syshour%

Thanks! Can you look to my systime problem too ? Here is "strong" "large" compare: Rules: on Clock#Time do if %systime% > 10:36:00 SendToHTTP 192.168.1.100,80,/check?%syshour% endif endon Time from main page: Local Time: 2018-02-25 10:37:54 Log: 4341761 : EVENT: Clock#Time=Sun,10...
by mk7
25 Feb 2018, 08:14
Forum: ESP Easy: Software
Topic: rules problems with %systime% and %syshour%
Replies: 6
Views: 5064

rules problems with %systime% and %syshour%

Hello! I'm doing time relays on sonoff th 16 and espeasy v2.0-20180126 I can not check the time via systime and syshour variables Rules example: on Clock#Time do if %syshour% >= 22 SendToHTTP 192.168.1.100,80,/check?%syshour% endif endon Log: 2602213 : ACT : SendToHTTP 192.168.1.100,80,/check?10 As ...