Building a Digital Clock with Arduino Uno Rev4 WiFi's RTC and LED Matrix

Поделиться
HTML-код
  • Опубликовано: 5 фев 2025
  • Join this channel to get access to perks:
    / @marios_ideas
    If you like this content and you want to support me in creating similar videos go to my Patreon webpage
    / mariosideas
    Or
    www.paypal.com...
    In this video I will look at the built-in RTC module. I will show you how to use it.
    I will attept to create the digital clock using built-in RTC module and built-in LED matrix.
    Link to the code:
    www.hackster.i...

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

  • @californiakayaker
    @californiakayaker Год назад +4

    This is the second project I've seen using the R4 . The first one showed access to I believe Wifi with a phone. This one shows more, such as RTC use. Little by little people are doing projects. Each one adds a sketch which expands our tools. Thanks.

  • @joshuaoduroadu5376
    @joshuaoduroadu5376 Год назад +2

    Splendid video. I really like the various iterations you used to explain the process involved in obtaining the time in different formats and displaying it.
    Most of all you kept it simple and concise. Thank you for sharing. ❤

    • @marios_ideas
      @marios_ideas  Год назад +1

      Glad you like it. Consider supporting my channel.

  • @josephbento7545
    @josephbento7545 10 дней назад

    What a great tutorial! Thank you. Iwant to try some code additions to connect to an NTP server through wifi to ensure the RTC is always accurate.

  • @JerryEricsson
    @JerryEricsson 11 месяцев назад

    This is cool to the max! I love it, have it installed on my R-4 right now. I have ordered a new RTC battery for an old DELL I am fixing up for my daughter to use to play pinball games on using an emulator, when I ordered the battery, I ordered 4 as I always order a few extra to save on shipping and stash a few extras in a drawer. On of them is going to hook to the RTC battery pin on the Uno R4 to keep the clock time up when I disconnect it from the power. I have dozens of old home built digital clocks around the house, this one will make a nice centerpiece for the clock shelf which is next to my AM transistor radio shelf containing all the old Transistors I got off Ebay and rebuilt to working order using Caps I got in a box of misc caps from electronic gold mine out of Arizona.

  • @geraldopontes37
    @geraldopontes37 3 дня назад

    Excellent vídeo!

  • @Volker-Dirr
    @Volker-Dirr Год назад +1

    About 13:43: If you just use an bool instead of a byte, then you even don't need an if-command nor the binary conditional assignment operator.

  • @dougs_trains
    @dougs_trains Год назад +2

    Interesting that it takes the time at compilation and not reset. I would have thought that when reset it would get the current time off the PC again.

  • @x_CrossHair_x
    @x_CrossHair_x 8 месяцев назад +1

    Arduino needs Dump the 12x8 LED Matrix to have an OLED Display on the up an coming (REV-5) Just a suggestion (And Request) if Arduino is reading this.. 👍👍👍👍😎.. Thanks for sharing your "Ideas"

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

    thanks for your video. I have a question, your Arduino IDE install on Windows 11 or 7? I can't make UNO connected with Windows 7 because lack of driver, even i try to find althrough internet. If you have driver, could you share?

  • @NotKyleChicago
    @NotKyleChicago 18 дней назад

    Does this support translated day/ month names? (For instance, "lunes" for "Monday")

    • @marios_ideas
      @marios_ideas  17 дней назад

      There is no place to display text . You would have to scroll it. But it is possible

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

    Excellent tutorial congratulation, is it possible to connect a buffer battery and keep the time even when turned off ?

    • @marios_ideas
      @marios_ideas  Год назад +2

      Yes, absolutely 3,3v coin battery needs to be connected to VRTC pin

  • @TheUnofficialMaker
    @TheUnofficialMaker 11 месяцев назад

    great project

  • @Volker-Dirr
    @Volker-Dirr Год назад

    About 04:28: hmm.. isn't it better to just add a delay(1000) instead of the if-command, because in that case the CPU has maybe less to do and can save some power (if the delay function is coded good and/or compiled well by the compiler; i didn't checked that).

  • @dimebag2486
    @dimebag2486 4 месяца назад

    very good job

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

    Freue mich schon auf Teil2 mit NTP-Server. Wann wird denn der Teil2 erscheinen? Viele Grüße

  • @TruthWielders
    @TruthWielders 5 месяцев назад

    In the code, why don't you go "secondsON_OFF = 1-secondsON_OFF ;"
    Instead of "secondsON_OFF ? secondsON_OFF = 0 : secondsON_OFF = 1;"
    The later seems less efficient (a bit) ?
    The ?: construct is cute but not always the best option ! Or am I missing something ?
    Thanks a lot !
    I've put the blinking colon at the right of the hour instead of left of seconds !
    Can I stop the little yellow led blinking on the board each time the display changes ?

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

    Pretty interesting, as always.

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

      Thanks:) This is one of few videos on New Uno Rev4 WIFI I will be making. Stay tuned:)

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

    In case I run out of power, how can I don't lose date and time? How do I connect a external battery? Thanks.

    • @JerryEricsson
      @JerryEricsson 11 месяцев назад

      The pins for the RTC Battery are broken out on the power side of the unit, you can hook a 1.5 to 3.5 volt battery to the 3 pin header, one for power, one for ground and one for OFF (I have no idea what the off pin is all about) I hooked a 2032 coin cell to mine, according to the data on other RTC setups, the cell should last about 17 years although I have never owned a RTC module for that long that still has a battery in it, I would guess it would depend on the quality of the cells themselves, but they should last a lonnnnnnnng time.

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

    Is it possible to connect a MAX7219 8x8 LED matrix to Arduino® UNO R4 WiFi to show the clock?

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

      It is. You need to read time components from the RTC module merge them into a single text like "12:45:34" So you will also be able to squeeze seconds there. And then display that text on the matrix. i have a separate video which shows how to do this. ruclips.net/video/oZDFh95Tt_E/видео.html. I mean this video shows how to display the text only.

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

    Hello Mario, can you build an LED arcade button into an enclosure so that any time the button is pressed it lights up and makes a buzzing noise?

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

      I can advice but I will not build it for you. Still I am not 100% sure what you are trying to do

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

      @@marios_ideas there is an LED push button switch, I need to have it mounted into an enclosure and for the button to light up when it is pushed. I was told I need a 12V power adapter but I’m not sure how that connects to the power switch

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

      I have a separate tutorial on LED switchs . Not sure if this is going to help you ruclips.net/video/vNmPSkAG2XI/видео.html@@dpl4563

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

    theres a pin for powering the RTC
    should have mentioned that

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

      In the wrap up I mentioned that I would do the follow up and there I was planning to powering RTC module from external 3,3V. I have started doing it but got dragged to few different projects:(

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

    Will there be a part 2?

    • @marios_ideas
      @marios_ideas  Год назад +1

      There will be . But I cannot promise when. Thjis channal is just a hobby and my work is keepeing me very busy right now:(

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

      @@marios_ideas thank you Mario

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

    Hello, nice project.
    Where can I find the description of the project and the code including the NTP server?

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

      Hi. I will try to add the code shortly

    • @marios_ideas
      @marios_ideas  Год назад +1

      I have now included the link to the code. Please consider supporting my channal

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

      @marios_ideas Ich würde als Dank gerne eine Spende schicken. Aber ich will nicht meine Kreditkartendaten ins Internet geben. Gerne per PayPal

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

      Would be very kind of you:)www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=7PD67JWZ9S3EJ&source=url @uengel5755 @@uengel5755

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

    Nice work

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

    Hallo, ghibt es schon einen Part 2 mit NTP-Lösung? VG ULLI

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

      I will do this video this year. But I have commitment to do 2/3 more videos before that. So stay tuned to my channel

  • @kavrishtalbindco.8346
    @kavrishtalbindco.8346 Год назад

    how to change the time on this

    • @marios_ideas
      @marios_ideas  Год назад +1

      As it is now you can set the time by reloading the code. I will eventually make video how to conenct this Arduino module to the internet and synchronise the time this way

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

    I keep getting #include error

  • @1977visa
    @1977visa 11 месяцев назад

    Is there a 12 hour way of writing this, rather then just 24 hour?

    • @marios_ideas
      @marios_ideas  11 месяцев назад

      Not sure I understand your question

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

    Running Light

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

    When you write:
    `secondsON_OFF ? secondsON_OFF = 1 : secondsON_OFF = 0;`
    That is a less conventional use of the ternary operator. Typically we return a value based on a condition, not use it rather for its side effects. Better alternatives are:
    1. ` secondsON_OFF = 1 - secondsON_OFF;`
    2. `secondsON_OFF = secondsON_OFF ? 0 : 1;`
    Remember, too smart code is not clean code. Clean code is what you can easily understand.

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

      Or yeah you can also do what @Volker-Dirr said (use a bool).

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

    ... and I thought setting the clock on my VCR was complicated ...
    (What's a VCR, Daddy? - Later, Dear.)

  • @waynefitkin1104
    @waynefitkin1104 11 месяцев назад

    The RTC in the Uno R4 is so inaccurate it is not useable

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

    The RTC is very inaccurate, 1 second per minute advance

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

      For me that was a fun project just to prove that this can be done. But it is weird why would they put such an inaccurate RTC on this board. I have to admit I did not leave it running for a long time. I will give mine a test

    • @DougLynch-xp6zl
      @DougLynch-xp6zl Год назад +1

      I got this board for the WiFi and RTC all in one. Learned very fast the RTC is not worth using. A lot of complaints about it online, always runs FAST.

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

      ​@@DougLynch-xp6zl You are a second person that points it out. I will mention it in the follow up video. Thanks

    • @JerryEricsson
      @JerryEricsson 11 месяцев назад

      Last check, the RTC module for arduinos are on sale for a couple of bucks, they are easy to use, and you can build them into most any arduino modules you want, or esp32 or 8266, they come with a spot to mount a battery, some have add on slots where you can put a light sensor, or perhaps a temp module should you wish, many have on board memory so you can store info on them as well. I have one that runs a clock for me and hides my password info in spreadsheet format for those days when my brain is foggy and I need to sign into HULU or Netflix. Handy and pretty much hidden from prying eyes who are not aware that such functions are useable in a digital clock kit.@@DougLynch-xp6zl

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

    Hallo, ich bekomme eine Fehlermeldung beim Kompellieren in der Zeile: getcurTime(timeStamp,&dayofWeek,&month,&dayofMon,&hours,&minutes,&seconds,&year);
    Meldung: Compilation error: 'getcurTime' was not declared in this scope

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

      Dasnke für den Code. Funktioniert bestens

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

      Freue mich schon auf Teil 2 mit NTP-Server

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

      The function name is getCurTime it is case sensitive