Search found 6 matches

by Flagada
04 Feb 2022, 16:28
Forum: ESP Easy: Software
Topic: Enter deep sleep right after sending all data
Replies: 12
Views: 8996

Re: Enter deep sleep right after sending all data

Hi and thank you for your reply, I well have a static IP and channel. In fact the 5-6s are not really a problem for me as my system is used only a few time each days. What annoys me more since my last firmware update is the fact that sometime the information is not sent before going to sleep, the di...
by Flagada
20 Jan 2022, 17:05
Forum: ESP Easy: Software
Topic: Enter deep sleep right after sending all data
Replies: 12
Views: 8996

Re: Enter deep sleep right after sending all data

Following your proposal here is the final code I use (it may help someone someday) :) On startup I start a 30s timer to force deepsleep in case of problem. I added a SleepSwitch that block sleep if pressed. I have 2 tasks DoorLock and vcc which are launched after wifi connection. When the 2 tasks ha...
by Flagada
20 Jan 2022, 16:39
Forum: RFlink: General Discussions
Topic: Custom protocol / keeloq
Replies: 7
Views: 18966

Re: Custom protocol / keeloq

Hi ! Sorry for replying to this old post. I saw on your homepage that a new release will come soon and that's a great news! The suggestion of hofaa13 seems very interesting : the ability to send custom data using this kind of command like 10;SENDRAW;0,1290,210,870,270,900,930,270,900,270 This could ...
by Flagada
05 Jan 2022, 21:17
Forum: ESP Easy: Software
Topic: Enter deep sleep right after sending all data
Replies: 12
Views: 8996

Re: Enter deep sleep right after sending all data

ok all you said make sense :) here what it could look : on System#Boot do TimerSet,1,30 // Set Timer to force shut down in case of problem Endon On Rules#Timer=1 do deepsleep // force sleep in case of problem endon on WiFi#connected do TaskRun,1 TaskRun,2 Let,1,1 endon on vcc#vcc do Let,2,1 If [var#...
by Flagada
05 Jan 2022, 18:25
Forum: ESP Easy: Software
Topic: Enter deep sleep right after sending all data
Replies: 12
Views: 8996

Re: Enter deep sleep right after sending all data

Thank you for you fast responses! I think it would be a great feature to add! I will try what you suggest, can you tell me if I am wrong (I've never used rules before ^^)? For information the aim of my system is to inform me of a door state and of the battery voltage, the esp is always in deep sleep...
by Flagada
05 Jan 2022, 12:53
Forum: ESP Easy: Software
Topic: Enter deep sleep right after sending all data
Replies: 12
Views: 8996

Enter deep sleep right after sending all data

Hi there ! First of all thank you very much for the development of such a great and useful firmware ! 8-) I have a remark/question about the deep sleep timer (I'm using the last ESP Mega firmware mega-20211224) and more specially about the sleep awake time . If I understand well, this timer is first...