Search found 6 matches

by Flop
11 Apr 2021, 10:29
Forum: RFlink: General Discussions
Topic: RFlink wemos gateway
Replies: 3
Views: 13555

Re: RFlink wemos gateway

Obviously, i didn't search enough before making this sketch. If I had know there were this espRFLinqMQTT already made, i would have use it ! I make my own sensors with espXXXX but i already had some temperature and humidity sensors on rf433mhz and they are build to be outside. I just wanted to integ...
by Flop
11 Apr 2021, 01:18
Forum: RFlink: General Discussions
Topic: RFlink wemos gateway
Replies: 3
Views: 13555

RFlink wemos gateway

Hi, I wanted to have a bridge between my rflink and my openHab server. So I have connected my RFlink to a wemos. The wemos read serial from rflink and send it to mqtt server. You can link sensors to wemos interactively. espeasy firmware is free and rflink too, so i share my work too. This is an ardu...
by Flop
23 Apr 2020, 22:02
Forum: ESP Easy: Software
Topic: Going to deepsleep forever in rules
Replies: 6
Views: 6265

Re: Going to deepsleep forever in rules

This is not possible without an additional circuit. The ESP itself cannot be in deep sleep mode for longer than the max deep sleep (which is roughly 3.5 hours) Even if you disconnect the link between GPIO-16 and RST, it will try to fire the wake up signal and simply by doing that it will consume mo...
by Flop
23 Apr 2020, 20:41
Forum: ESP Easy: Software
Topic: Going to deepsleep forever in rules
Replies: 6
Views: 6265

Re: Going to deepsleep forever in rules

also tried to disable sleep awake time ( put 0 ) in config and rules : On System#Boot do timerSet,1,8 timerSet,2,12 endon On Rules#Timer=1 do if [Vcc#Analog]<2.5 deepsleep,0 endif endon On Rules#Timer=2 do deepsleep,30 endon event #1 occurs but esp does not go to deepsleep: 9637 : EVENT: Rules#Timer...
by Flop
23 Apr 2020, 20:24
Forum: ESP Easy: Software
Topic: Going to deepsleep forever in rules
Replies: 6
Views: 6265

Re: Going to deepsleep forever in rules

This does not work ! new rule : On System#Boot do delay 8000 if [Vcc#Analog]<2.5 deepSleep,0 endif endon log : INIT : Booting version: mega-20190928 (ESP82xx Core 2_5_2, NONOS SDK 2.2.1(cfd48f3), LWIP: 2.1.2 PUYA support) 78 : INIT : Free RAM:33376 79 : INIT : Rebooted from deepsleep #31 Last Task: ...
by Flop
23 Apr 2020, 20:14
Forum: ESP Easy: Software
Topic: Going to deepsleep forever in rules
Replies: 6
Views: 6265

Going to deepsleep forever in rules

Hi, I have an esp12 with espeasy firmware powered with lipo battery. This esp is waking up each 10 minutes for 10 seconds and send temperature to an openhab server. Is there a command that can be used in rules to put the esp in deepsleep forever ? I check the battery voltage at startup, and I want t...