It is clear, it is well done, very well explained. Made me realized that I need to invest into a mini instead of a nano, I reproduced this tutorial without any issue. Thank you so much for it, I think your video is worth thousands of views.
Arduino NUBee here. Great start off video for sleep function, looking forward to the RTC interrupt and any other future. Very well done, followed and learned so much more than I expected. I plan to donate when I get through others!!! You are an excellent teacher, keep 'em coming
If you keep the jumper wire attached to the ground (LOW) over 5s the Arduino goes into a dead loop. I would slightly modify the code so it'll put it to sleep only if pin 2 is HIGH Example: ======================== if (digitalRead(2) != LOW) { Going_To_Sleep(); } =========================
Does sleep mode affect saved variables? for example if I had persons=5 before sleep is the program going to continues when the arduino wake up or it will initiate the variables ?
I tried the interrupt pin and it worked. But if I keep the interrupt pin plugged in for more than 5 seconds and the system goes back to sleep. Then I unplug the pin and replug the pin and the system will not wake up. At least the LED will not come back on. Any idea please?
It is clear, it is well done, very well explained. Made me realized that I need to invest into a mini instead of a nano, I reproduced this tutorial without any issue. Thank you so much for it, I think your video is worth thousands of views.
Arduino NUBee here. Great start off video for sleep function, looking forward to the RTC interrupt and any other future. Very well done, followed and learned so much more than I expected. I plan to donate when I get through others!!! You are an excellent teacher, keep 'em coming
Best, most well explained video on the subject that I've seen on UA-cam that I've seen. Thank you very much! Subbed
If you keep the jumper wire attached to the ground (LOW) over 5s the Arduino goes into a dead loop.
I would slightly modify the code so it'll put it to sleep only if pin 2 is HIGH
Example:
========================
if (digitalRead(2) != LOW)
{
Going_To_Sleep();
}
=========================
It works, thanks! Note that as of 2/25/2024, none of your downloads or blog sites are accessible. I copied your code from the screen.
Magnifico, al fin una muy buena explicación clara y práctica. Muchas gracias.
On point and crystal clear explanation! Thanks a lot man!
Hi..This tutorial clear my doubt about sleep & wake up in smartphones
Thanks its great explanation.
many , many thanks , ich bedanke mich und PLEASE STAY HEALTHY
Thanks appreciate the help.
Thank you for this video! I noticed that your blog is now working. Can you fix that?
Excellent.
Very useful, thanks a lot.just discoveed your tutorials. My day will be filled :-) :-) .Frank,Belgium
Perfect👏👏
Hi, have you played with waking up the Arduino Uno from sleep using capacitive sensor setup as interrupt?
Anyone still got the code upload somewhere?
Can I use the on/off button to wake the Arduino? Any way to turn off the GREEN LED light while the Arduino is sleeping?
Does sleep mode affect saved variables? for example if I had persons=5 before sleep is the program going to continues when the arduino wake up or it will initiate the variables ?
I tried the interrupt pin and it worked. But if I keep the interrupt pin plugged in for more than 5 seconds and the system goes back to sleep. Then I unplug the pin and replug the pin and the system will not wake up. At least the LED will not come back on. Any idea please?