My esp32 sits on a camera extension board that connect to it's own battery, making this a useful project that don't need to be connected to Arduino IDE or computer at all. Thanks for explaining this in such detail. I'm in California and it took me awhile to figure out how many seconds to adjust gmtOffset_sec for my zone, but it's working perfect now.
Sir I am using the same library as you mentioned but no text is displayed. I tried adjusting the contrast. It works with Arduino UNO and not esp32. Please Help
char timeHour[7]; strftime(timeHour,7, "%H:%M", &timeinfo); return timeHour; it will return a string but u can convert it. U can paly with the format but u need to change the length of the array accordingly
Does not compile. :( Trying to use with Lolin D1 mini clone, and 2004 lcd display. Changed variable for screen, I have the right board selected with com port. A ton of errors when compiling. Just trying to make a simple NTP clock with time, day, date. :(
My ESP32 no longer connects to WiFi. I did a test, without LCD, it worked. Then I uploaded the program with LCD and it doesn't work, but now the code without LCD doesn't work either. I can't explain this.
Thanks for your nice video. I'm using a NodeMCU-32s (HiLetgo), with your "Hello" program, but I'm using a 2004 LCD. I get this error: ============ Multiple libraries were found for "LiquidCrystal_I2C.h" Used: C:\Users\junkg\Dropbox\Programming\Arduino\libraries\Newliquidcrystal_1.3.5 Not used: C:\Users\junkg\Dropbox\Programming\Arduino\libraries\LiquidCrystal_I2C exit status 1 Compilation error: invalid conversion from 'int' to 't_backlighPol' [-fpermissive] ================== I can't even FIND this Newliquidcrystal_1.3.5 on the list of installed (or not installed) libraries. What am I doing wrong here? Is it because I'm operating out of Dropbox?
@@DIYTechRush your video really helped me to print time on serial monitor but I got a confusion regaring the UTC, if my local time is UTC+5, I have to add 3600 or multiply it?
● ESP32 NTP Server: ua-cam.com/video/YBOks3mM4Ng/v-deo.html
● Playlist Link: bit.ly/3TdXiq5
Can we please get the code
My esp32 sits on a camera extension board that connect to it's own battery, making this a useful project that don't need to be connected to Arduino IDE or computer at all. Thanks for explaining this in such detail. I'm in California and it took me awhile to figure out how many seconds to adjust gmtOffset_sec for my zone, but it's working perfect now.
Sounds great!
Outstanding video and very detailed. I can see using this tutorial in my American High School classes. Thank you so much.
Glad it was helpful!
Any tips for a casing that can hold all this stuff and display the LCD1602 nicely?
excellent video, the explanation and presentation is perfect.
great attention to the details that matter.
Glad you liked it!
Is it possible to stop flickering on lcd at the seconds update?
Yeah it's possible using millis()
Sir I am using the same library as you mentioned but no text is displayed. I tried adjusting the contrast. It works with Arduino UNO and not esp32. Please Help
Very nice project and looks good, but would like it for my bedroom so how can I auto adjust the brightness please.
Thanks 😊
It's a great idea to add auto brightness by using an LDR (photoresistor)
ordenado y funcional, que mas se puede pedir, gracias
Cool project! How to assign the &timeinfo for %H, %M and %S to variables of type "int"?
char timeHour[7];
strftime(timeHour,7, "%H:%M", &timeinfo);
return timeHour;
it will return a string but u can convert it. U can paly with the format but u need to change the length of the array accordingly
Bro is it possible to modify the normal digital wall clock into ntp synced clock. Check with Al fajr clock CW-05 model no.
Boardnya menggunakan NodeMCU-32S ya ?
any alternative to i2c??
i dont have one
Does not compile. :( Trying to use with Lolin D1 mini clone, and 2004 lcd display. Changed variable for screen, I have the right board selected with com port. A ton of errors when compiling. Just trying to make a simple NTP clock with time, day, date. :(
que pena, a mi me funcionó a la primera después de configurar la pantalla 0x27 y el offset UTP
great video
Thanks!
Good idea
Thanks
My ESP32 no longer connects to WiFi. I did a test, without LCD, it worked. Then I uploaded the program with LCD and it doesn't work, but now the code without LCD doesn't work either. I can't explain this.
Esp32 gpios work with 3.3v and i2c module works with 5v so u need to manage the voltages with a voltage converter
How can I convert hour number to int and use it in a conditional loop?
Thanks for your nice video.
I'm using a NodeMCU-32s (HiLetgo), with your "Hello" program, but I'm using a 2004 LCD. I get this error:
============
Multiple libraries were found for "LiquidCrystal_I2C.h"
Used: C:\Users\junkg\Dropbox\Programming\Arduino\libraries\Newliquidcrystal_1.3.5
Not used: C:\Users\junkg\Dropbox\Programming\Arduino\libraries\LiquidCrystal_I2C
exit status 1
Compilation error: invalid conversion from 'int' to 't_backlighPol' [-fpermissive]
==================
I can't even FIND this Newliquidcrystal_1.3.5 on the list of installed (or not installed) libraries.
What am I doing wrong here? Is it because I'm operating out of Dropbox?
Hi, if I want turn on led on 6 am and off on 5 pm with this real time,? Is it possible, please send the code I need it.
It's definitely possible.
@@DIYTechRush Can You Guide me the Way, please...
@@Anandkumar-mb9bi like:
if (time.hour() > 6 && time.hour() < 17) { digitalwrite(PIN, HIGH); }
else { digitalwrite(PIN, LOW); }
could you make a digital screen connect to a specific website?
you can get data from the api, but you cant display a website itself on the screen, as theres no browser running on the esp32
how to do it with esp8266
i got an error lcd.init();
not found in library name.
you habe the wrong library.
Use lcd.begin(); and it works
the library es LIQUID CRYSTAL I2C
Make video on send time and data to firebase
OK thanks
@@DIYTechRush your video really helped me to print time on serial monitor but I got a confusion regaring the UTC, if my local time is UTC+5, I have to add 3600 or multiply it?
@@UA-camshorts-kg4hy 5h*60*60 = 5*3600=18000
Not working
Use another address like
0x27 not 0x3F
can we get code
Hello