A guide to putting your Arduino to sleep

Поделиться
HTML-код
  • Опубликовано: 7 окт 2024
  • НаукаНаука

Комментарии • 20

  • @ronanchardonneau27
    @ronanchardonneau27 6 лет назад +7

    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.

  • @nickk48
    @nickk48 7 месяцев назад

    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.

  • @danpeternel6798
    @danpeternel6798 5 лет назад +2

    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

  • @DanMincu
    @DanMincu 5 лет назад +4

    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();
    }
    =========================

  • @wezil68s
    @wezil68s 3 года назад

    Best, most well explained video on the subject that I've seen on RUclips that I've seen. Thank you very much! Subbed

  • @x-tron3737
    @x-tron3737 4 года назад

    Hi..This tutorial clear my doubt about sleep & wake up in smartphones

  • @franciscorgq8502
    @franciscorgq8502 5 лет назад +1

    Magnifico, al fin una muy buena explicación clara y práctica. Muchas gracias.

  • @randomguy3784
    @randomguy3784 4 года назад

    On point and crystal clear explanation! Thanks a lot man!

  • @jamesanderton903
    @jamesanderton903 5 лет назад +1

    Thanks appreciate the help.

  • @unglaubichuberlieber8048
    @unglaubichuberlieber8048 3 года назад

    many , many thanks , ich bedanke mich und PLEASE STAY HEALTHY

  • @hobbymachinist
    @hobbymachinist 3 года назад

    Thanks its great explanation.

  • @sall-toukai2050
    @sall-toukai2050 2 года назад

    Excellent.

  • @frankvermeersch5435
    @frankvermeersch5435 4 года назад

    Very useful, thanks a lot.just discoveed your tutorials. My day will be filled :-) :-) .Frank,Belgium

  • @tomjoad1060
    @tomjoad1060 Год назад

    Thank you for this video! I noticed that your blog is now working. Can you fix that?

  • @masoudshahbazi9691
    @masoudshahbazi9691 4 года назад

    Perfect👏👏

  • @phwualoha1
    @phwualoha1 3 года назад

    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?

  • @phwualoha1
    @phwualoha1 3 года назад

    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?

  • @iamfyrus
    @iamfyrus 10 месяцев назад

    Anyone still got the code upload somewhere?

  • @vestkok5194
    @vestkok5194 5 лет назад

    Hi, have you played with waking up the Arduino Uno from sleep using capacitive sensor setup as interrupt?

  • @anaselaymach8975
    @anaselaymach8975 3 года назад

    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 ?