Search found 15 matches

by DimOkIdE
09 Apr 2019, 21:50
Forum: ESP Easy: Hardware
Topic: Sonoff POW + Hardware Watchdog
Replies: 17
Views: 10049

Re: Sonoff POW + Hardware Watchdog

Thanks, got it. good luck!
by DimOkIdE
09 Apr 2019, 20:57
Forum: ESP Easy: Hardware
Topic: Sonoff POW + Hardware Watchdog
Replies: 17
Views: 10049

Re: Sonoff POW + Hardware Watchdog

Probably you shouldtry the actual nightly build. Looks like there happened something: [RTC user var] Store read values in RTC memory to survive crash Oh, Wiki, thank you greatly for advice - it really works now with the todays build. The custom values are now saved at warm boot. And the watchdog is...
by DimOkIdE
08 Apr 2019, 22:20
Forum: ESP Easy: Hardware
Topic: Sonoff POW + Hardware Watchdog
Replies: 17
Views: 10049

Re: Sonoff POW + Hardware Watchdog

Hi, sorry, but no, you havn't a logic like the one i posted. In your case you still depend on an event outside of the relay state, on the button. If you switch the GPIO 12 over network or however you won't notice this by using the button event. But never mind if you already tried a similar way whic...
by DimOkIdE
08 Apr 2019, 20:24
Forum: ESP Easy: Hardware
Topic: Sonoff POW + Hardware Watchdog
Replies: 17
Views: 10049

Re: Sonoff POW + Hardware Watchdog

with your first rule you will loose the data of the task "Calculation" anyway, System#Boot will be triggered on warm boot, too. Hi! Yes, I know this. The "Calculation" is another device and used for Domoticz mainly. And setting it to zeros at startup is OK. And I want to keep th...
by DimOkIdE
08 Apr 2019, 08:54
Forum: ESP Easy: Hardware
Topic: Sonoff POW + Hardware Watchdog
Replies: 17
Views: 10049

Re: Sonoff POW + Hardware Watchdog

ThomasB wrote: 08 Apr 2019, 01:50 That is unexpected. For a sanity test I just checked my mega-20180714 Sonoff and the user vars are restored on warm boot.

- Thomas
Thomas, thank you greatly for your help! Will try another (elder) version.
by DimOkIdE
07 Apr 2019, 23:06
Forum: ESP Easy: Hardware
Topic: Sonoff POW + Hardware Watchdog
Replies: 17
Views: 10049

Re: Sonoff POW + Hardware Watchdog

That is interesting. I experience watchdog timeouts too (it's a persistent issue) and my user vars are retained on the reboot. As a rule/configuration validation test: (1) Perform a warm reboot using the Tools menu (click Tools=Reboot button). (2) Immediately after reboot, compare the user vars to ...
by DimOkIdE
07 Apr 2019, 18:54
Forum: ESP Easy: Hardware
Topic: Sonoff POW + Hardware Watchdog
Replies: 17
Views: 10049

Re: Sonoff POW + Hardware Watchdog

It applies to the user variables assigned to the various device plugins. But GPIO is not a user variable and its state is not saved. So the workaround is to use a dummy device's user variable to store your GPIO's state. Or if applicable, you can use your existing plugin variables to determine the r...
by DimOkIdE
03 Apr 2019, 20:01
Forum: ESP Easy: Hardware
Topic: Sonoff POW + Hardware Watchdog
Replies: 17
Views: 10049

Re: Sonoff POW + Hardware Watchdog

Don't you know - is it possible to use smth like "SendToHTTP" but for HTTPS?
by DimOkIdE
03 Apr 2019, 19:56
Forum: ESP Easy: Hardware
Topic: Sonoff POW + Hardware Watchdog
Replies: 17
Views: 10049

Re: Sonoff POW + Hardware Watchdog

Thomas, thank you for your advice! Would you be so kind to clarify a little? This is possible because the last known User Variable values are saved in RTC memory Is this applies to all "devices" or Dummy only? I mean, I have the "Switch input" device with the gpio-12 state. And t...
by DimOkIdE
03 Apr 2019, 15:38
Forum: ESP Easy: Hardware
Topic: Sonoff POW + Hardware Watchdog
Replies: 17
Views: 10049

Sonoff POW + Hardware Watchdog

Hi there. I have the POW (R2) + mega-20190315 (ESP_Easy_mega-20190315_hard_SONOFF_POW_4M). I've initialized it via "factory reset" and using pre-defined config "Sonoff POW-r2". It works correctly (I hope :) ), measures voltage, current, power. But sometimes it's resetting with re...
by DimOkIdE
25 Feb 2019, 23:27
Forum: ESP Easy: Software
Topic: GPIO via http request - how?
Replies: 2
Views: 2107

Re: GPIO via http request - how?

It really works. Thank you greatly!
by DimOkIdE
24 Feb 2019, 13:47
Forum: ESP Easy: Software
Topic: GPIO via http request - how?
Replies: 2
Views: 2107

GPIO via http request - how?

Hi there. In old releases (early 2018) I could send the command via http to turn on/off the gpio (for application or in Domoticz): http://192.168.11.11/?cmd=GPIO,14,1 And now it doesn't work :( Log has: 309555996: Command: gpio 309555997: Command unknown: 'gpio' Build:⋄ 20103 - Mega Libraries:⋄ ESP8...
by DimOkIdE
13 Oct 2018, 21:22
Forum: ESP Easy: Software
Topic: IFs and %syshour% issue
Replies: 6
Views: 3395

Re: IFs and %syshour% issue

Oh, intersting. Trying: On Time#Initialized do If %syshour% > 12 and %syshour% < 23 timerSet,7,0 timerSet,8,0 timerSet,3,85 timerSet,4,95 Endif endon Doesn't work. Found the similar topic here (http://www.letscontrolit.com/forum/viewtopic.php?f=6&t=5819&p=31376&hilit=Initialized#p31376)....
by DimOkIdE
13 Oct 2018, 20:56
Forum: ESP Easy: Software
Topic: IFs and %syshour% issue
Replies: 6
Views: 3395

Re: IFs and %syshour% issue

grovkillen , thanks for a such quick reply! It's not working because the event System#Boot is only happening once. Actually, it supposed to fire only once (when the ESP boots) to check the current time and disable/enable gpios depending on the time range. As I've inderstood - the System#Boot is the...
by DimOkIdE
13 Oct 2018, 20:02
Forum: ESP Easy: Software
Topic: IFs and %syshour% issue
Replies: 6
Views: 3395

IFs and %syshour% issue

Hi there. I'm using the following rule on mega-20180104: On System#Boot do If %systime% < 05:00:00 GPIO,13,0 GPIO,14,0 timerSet,7,240 Endif If %systime% > 05:00:00 timerSet,7,0 timerSet,8,0 timerSet,3,5 timerSet,4,15 Endif If %systime% > 21:00:00 GPIO,13,0 GPIO,14,0 timerSet,7,240 Endif endon ... //...