ESP32 Project - Digital Clock with LCD Display At Home

  Рет қаралды 39,533

Enjoy Mechatronics

Enjoy Mechatronics

Күн бұрын

Пікірлер: 49
@mauricio6958
@mauricio6958 2 ай бұрын
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.
@EnjoyMechatronics
@EnjoyMechatronics 2 ай бұрын
Sounds great!
@Platttraining
@Platttraining 5 ай бұрын
Outstanding video and very detailed. I can see using this tutorial in my American High School classes. Thank you so much.
@EnjoyMechatronics
@EnjoyMechatronics 5 ай бұрын
Glad it was helpful!
@Hrudayesh
@Hrudayesh 16 күн бұрын
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
@cbara568
@cbara568 Жыл бұрын
Any tips for a casing that can hold all this stuff and display the LCD1602 nicely?
@michaelrydahl8669
@michaelrydahl8669 9 ай бұрын
Is it possible to stop flickering on lcd at the seconds update?
@EnjoyMechatronics
@EnjoyMechatronics 9 ай бұрын
Yeah it's possible using millis()
@GarlicMonoxide
@GarlicMonoxide 9 ай бұрын
excellent video, the explanation and presentation is perfect. great attention to the details that matter.
@EnjoyMechatronics
@EnjoyMechatronics 9 ай бұрын
Glad you liked it!
@RUANGBERITA7
@RUANGBERITA7 4 ай бұрын
Boardnya menggunakan NodeMCU-32S ya ?
@ingoknoppke7265
@ingoknoppke7265 Ай бұрын
Cool project! How to assign the &timeinfo for %H, %M and %S to variables of type "int"?
@תומרגופמן
@תומרגופמן 23 күн бұрын
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
@aryanwasan2654
@aryanwasan2654 6 ай бұрын
any alternative to i2c?? i dont have one
@MrBobWareham
@MrBobWareham Жыл бұрын
Very nice project and looks good, but would like it for my bedroom so how can I auto adjust the brightness please.
@EnjoyMechatronics
@EnjoyMechatronics Жыл бұрын
Thanks 😊 It's a great idea to add auto brightness by using an LDR (photoresistor)
@Tube-id7su
@Tube-id7su Жыл бұрын
Bro is it possible to modify the normal digital wall clock into ntp synced clock. Check with Al fajr clock CW-05 model no.
@peteygnyc
@peteygnyc 10 ай бұрын
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. :(
@waka7377
@waka7377 8 ай бұрын
que pena, a mi me funcionó a la primera después de configurar la pantalla 0x27 y el offset UTP
@vegasdealer777
@vegasdealer777 8 ай бұрын
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?
@mahdinevisandeh833
@mahdinevisandeh833 8 ай бұрын
How can I convert hour number to int and use it in a conditional loop?
@EnjoyMechatronics
@EnjoyMechatronics 2 жыл бұрын
● ESP32 NTP Server: kzbin.info/www/bejne/j3OynKZporJnhMk ● Playlist Link: bit.ly/3TdXiq5
@wabda-2003
@wabda-2003 4 ай бұрын
Can we please get the code
@waka7377
@waka7377 8 ай бұрын
ordenado y funcional, que mas se puede pedir, gracias
@HobbyHomeWorkshop
@HobbyHomeWorkshop Жыл бұрын
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.
@cesarsolis001
@cesarsolis001 Жыл бұрын
Esp32 gpios work with 3.3v and i2c module works with 5v so u need to manage the voltages with a voltage converter
@VIRUSSS007
@VIRUSSS007 8 ай бұрын
how to do it with esp8266
@pflint
@pflint 8 ай бұрын
great video
@EnjoyMechatronics
@EnjoyMechatronics 8 ай бұрын
Thanks!
@Draven805
@Draven805 Жыл бұрын
could you make a digital screen connect to a specific website?
@finn3163
@finn3163 9 ай бұрын
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
@Anandkumar-mb9bi
@Anandkumar-mb9bi Жыл бұрын
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.
@EnjoyMechatronics
@EnjoyMechatronics Жыл бұрын
It's definitely possible.
@Anandkumar-mb9bi
@Anandkumar-mb9bi Жыл бұрын
@@EnjoyMechatronics Can You Guide me the Way, please...
@ihmSelbst
@ihmSelbst Жыл бұрын
@@Anandkumar-mb9bi like: if (time.hour() > 6 && time.hour() < 17) { digitalwrite(PIN, HIGH); } else { digitalwrite(PIN, LOW); }
@md.mijanurrahman8344
@md.mijanurrahman8344 Жыл бұрын
i got an error lcd.init(); not found in library name.
@ihmSelbst
@ihmSelbst Жыл бұрын
you habe the wrong library.
@michaelrydahl8669
@michaelrydahl8669 9 ай бұрын
Use lcd.begin(); and it works
@waka7377
@waka7377 8 ай бұрын
the library es LIQUID CRYSTAL I2C
@suchin04
@suchin04 Жыл бұрын
Good idea
@EnjoyMechatronics
@EnjoyMechatronics Жыл бұрын
Thanks
@GudepuKavyasridurga-em9ch
@GudepuKavyasridurga-em9ch 5 ай бұрын
can we get code
@Youtubeshorts-kg4hy
@Youtubeshorts-kg4hy Жыл бұрын
Make video on send time and data to firebase
@EnjoyMechatronics
@EnjoyMechatronics Жыл бұрын
OK thanks
@Youtubeshorts-kg4hy
@Youtubeshorts-kg4hy Жыл бұрын
@@EnjoyMechatronics 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?
@EnjoyMechatronics
@EnjoyMechatronics Жыл бұрын
@@KZbinshorts-kg4hy 5h*60*60 = 5*3600=18000
@chandanpandey3428
@chandanpandey3428 Жыл бұрын
Not working
@EnjoyMechatronics
@EnjoyMechatronics Жыл бұрын
Use another address like 0x27 not 0x3F
@gagankushwah2039
@gagankushwah2039 Жыл бұрын
Hello
Control High Voltage Devices with ESP32 and Tip120
6:55
Enjoy Mechatronics
Рет қаралды 30 М.
黑天使被操控了#short #angel #clown
00:40
Super Beauty team
Рет қаралды 61 МЛН
UFC 310 : Рахмонов VS Мачадо Гэрри
05:00
Setanta Sports UFC
Рет қаралды 1,2 МЛН
My scorpion was taken away from me 😢
00:55
TyphoonFast 5
Рет қаралды 2,4 МЛН
Каха и дочка
00:28
К-Media
Рет қаралды 3,4 МЛН
Bsides Tallinn 2024 - Lyra Rebane (Web security is fun)
30:26
BSides Tallinn
Рет қаралды 6 М.
Using LCD1602 or LCD2004 with ESP32
13:49
Robojax
Рет қаралды 75 М.
Try these 16 Brilliant ESP32 projects!!!
11:18
ToP Projects Compilation
Рет қаралды 615 М.
GC9A01 Round LCD with ESP32 & Arduino
45:46
DroneBot Workshop
Рет қаралды 313 М.
ESP32 DHT Web Server Project
5:53
Enjoy Mechatronics
Рет қаралды 136 М.
Liquid Crystal Display (LCD) | Project on ESP32
8:47
Smowcode
Рет қаралды 1 М.
DIY Analog Clock Project - ESP32 NTP Server
5:03
Enjoy Mechatronics
Рет қаралды 9 М.
Is this Best ESP32 board? New T-Display S3 ESP32S3
10:17
Volos Projects
Рет қаралды 352 М.
Smoke  detector project with ESP32 using Blynk IoT Cloud #blynkiot #esp32 #iot
26:22
黑天使被操控了#short #angel #clown
00:40
Super Beauty team
Рет қаралды 61 МЛН