Re: node.dsleep() reliability - zombie mode
Posted:
Wed Feb 25, 2015 1:27 am
by Markus Gritsch
epsoc wrote:Code: Select allstatic uint8 remote_ipadr[4] = { 111, 222,333,444 };
333 and 444 will not fit into a uint8_t.
Re: node.dsleep() reliability - zombie mode
Posted:
Fri Mar 20, 2015 2:43 am
by Dennis
Markus Gritsch wrote:epsoc wrote:Code: Select allstatic uint8 remote_ipadr[4] = { 111, 222,333,444 };
333 and 444 will not fit into a uint8_t.
Yep - especially since they're not valid for ipv4 IP address octets anyway - only everything between 0 and 255 will work.
regards
Re: node.dsleep() reliability - zombie mode
Posted:
Thu Mar 26, 2015 5:02 am
by plucker
Hi All,
Not sure if there is any progress, but on my side, I still have this zombie mode in my set-up: ESP-012 + DHT11 on GPIO2.
The data pin on the sensor does have a pull up...
I am using the board which have LED connected to all IOs, I may try a standalone ESP-012.
Any other idea on this zombie mode?
Thanks,
Plucker
Re: node.dsleep() reliability - zombie mode
Posted:
Thu Apr 02, 2015 7:06 am
by plucker
Hi all,
Just to confirm this zombie mode is specific to lua nodeMCU firmware, indeed I compile a native C program and didn't have this issue on the same hardware.
I think this has been mentioned in a previous post.
Conclusion, if you need deep sleep, you will have to compile your own code for the time being.
Cheers,
Plucker