Led Matrix Clock using ESP32 NTP without RTC IC

Поділитися
Вставка
  • Опубліковано 10 січ 2025

КОМЕНТАРІ • 50

  • @jackp2088
    @jackp2088 2 роки тому +3

    Thank you. I did this project in minutes and now the clock is running ok in my bedroom. Make sure you placed all the library files in the right place before compiling/uploading the code. It's better to adjust the brightness using the code:
    P.intensity(0);
    for the brightness; because the LED will be too bright for our eyes.

  • @mulroy5542
    @mulroy5542 2 роки тому

    bravo everything is clear and precise it works wonderfully
    hello from france

  • @mulroy5542
    @mulroy5542 2 роки тому +1

    In France, we changed time and switched to winter time for that I have to reprogram my ESPIs there a way to automatically switchthank you for your reply

  • @j.van_heck4394
    @j.van_heck4394 8 місяців тому +1

    Thanks. Looks very nice

  • @LeeCooperification
    @LeeCooperification 3 роки тому +7

    small tip:
    P.setIntensity (0); for the brightness (insert in line 92)

  • @derekhawley9660
    @derekhawley9660 2 роки тому +1

    Great ... super simple and worked first time, thanks. UK winter ... timezoneinSeconds = 0;

  • @jagannathkulkarni
    @jagannathkulkarni 2 роки тому +1

    hi, may I know, how many times this clock connects with the NTP server each day ?

  • @welon68
    @welon68 2 роки тому +1

    Is it possible to add an external button to change the time zone (e.g. + 3600sec) Without it, you have to correct the code every six months.

  • @perfectheatingandplumbingp7747
    @perfectheatingandplumbingp7747 2 роки тому +3

    Cool project but why do the minutes up date at 59 seconds and not at 00

    • @jromhek2070
      @jromhek2070 Рік тому +1

      Hello , did you find a solution ? Thanks

    • @rene_richter
      @rene_richter 7 місяців тому

      @@jromhek2070 I've changed this from line number 41
      void getsec(char* psz) {
      s =s + 1;
      if (s == 60) {
      s = 0;
      }
      sprintf(psz, "%02d", s);
      }
      and it works well 👍

  • @elekoeleko4832
    @elekoeleko4832 Рік тому

    Работи. Само трябва да се внимава да се запишат правилно, wi-fi адреса и паролата. На мен един интервал между буквите ми създаде много главоболия. И chatGPT неможа да ми помогне. :)

  • @drum520
    @drum520 Рік тому +1

    good job!

  • @mohitparikh4455
    @mohitparikh4455 Рік тому +1

    can I use NodeMCU in place of ESP32 ? What changes are required with code ?

    • @MARGCO-d7m
      @MARGCO-d7m Рік тому

      YOU CAN!

    • @akiztaecho7514
      @akiztaecho7514 7 місяців тому

      me too.. i have nodemcu.. do you have the code and scheme?

  • @rohitmobilecare7691
    @rohitmobilecare7691 Рік тому

    How to set time format

  • @robertofkennedy
    @robertofkennedy 2 роки тому

    What Wifi.h Library are you using

  • @DeepakCG
    @DeepakCG Рік тому +1

    pls someone help me with the code to change time from 24 to 12 hours

  • @electronicsdiy7340
    @electronicsdiy7340 3 роки тому +1

    Awesome 😃

  • @MARGCO-d7m
    @MARGCO-d7m Рік тому

    HOW TO CHANGE FONT SIZE? YOUR LED SCREEN CAPTURING 3 MORE LINES(VERTICALLY) THAN MY LED

    • @B.R.Garden
      @B.R.Garden Рік тому

      Same here, all font size is same as the seconds size displayed in the thumbnail.

  • @CATips
    @CATips 2 роки тому

    Can i get code?

  • @miguelvaldivia6817
    @miguelvaldivia6817 Рік тому +1

    it work well

  • @random_idRI
    @random_idRI 2 роки тому

    Whay not work my led matrix🙏

  • @cicerosantana4085
    @cicerosantana4085 Рік тому

    Como posso fazer para acertar a hora para o fuso horario de São Paulo - Brasil. Boa Noite!

  • @ศักดิ์สกุลไทยสวัสดิ์

    error
    line no.79
    WiFi.mode(WIFI_STA);
    Compilation error: 'class WiFiClass' has no member named 'mode'
    please
    thank you

    • @StechiezDIY
      @StechiezDIY  Рік тому

      Yeah, libraries are keep on changing, but if you try with older libraries it might work.

  • @OviMG
    @OviMG 2 роки тому

    ISO C++ forbids converting a string constant to 'char*' [-Wwrite-strings]
    this is saying at password ssid lines

  • @astitvakashyap5551
    @astitvakashyap5551 2 роки тому

    I am unable to download fonts library

  • @ahapersze1527
    @ahapersze1527 3 роки тому

    Any code for rtc?

    • @StechiezDIY
      @StechiezDIY  2 роки тому

      rtc code is not required as this is ntp example.

  • @bintangdemarta9952
    @bintangdemarta9952 2 роки тому

    How can i get time zone +7 ?

  • @shahidali-qg9yw
    @shahidali-qg9yw 2 роки тому

    I have error of font_data.h

  • @astitvakashyap5551
    @astitvakashyap5551 2 роки тому

    How can I contact yo

    • @StechiezDIY
      @StechiezDIY  2 роки тому

      you can reach me on my email id.

  • @qsdrfghgujfddyffguff
    @qsdrfghgujfddyffguff 3 роки тому

    12 hours code modification pls

    • @jackp2088
      @jackp2088 2 роки тому +1

      it's easy, just subtract 12 from the hour variable if the hour > 12