Let's make Smartwatch ESP32

  Переглядів 210,805

Volos Projects

Volos Projects

Рік тому

I am using round 240x240 display (GC9A01), ESP32 and RTC 3231 module.
This video is sponsored by www.pcbway.com/ PCBWay can produce quality pcb very fast. They have 3D printing service also. I am planning to 3d print case for this "smartwatch."
Here are detailed instructions how to make this. Many thanks to Michael Diamond for making thease instruction. www.whatimade.today/the-idiots...
Here is code: github.com/VolosR/watchESP
How to use this display: • Round GC9A01 240x240 d...
LIBRARY: github.com/adafruit/RTClib
Don't forget to subscribe!
You can buy me coffee here: ko-fi.com/volosprojects
THANK YOU!
#Arduino #Smartwatch #ESP32

КОМЕНТАРІ: 216
@MeinElektronikHobby
@MeinElektronikHobby Рік тому
... another great project. Thanks for that. I'm always excited to see what new ideas you have about our hobby
@michaeldiamond2269
@michaeldiamond2269 Рік тому
Brilliant work as usual. I already ordered my screen and have it attached to a Raspberry Pi Pico until my ESP32 arrives. Can't wait to get my hands on the 3d print files for the case.
@MagnusWedmark
@MagnusWedmark Рік тому
That looks great, great work and thanks for sharing! That would look even better with antialias. Maybe pre-rendered small bitmaps in Flash/RAM for numbers and symbols.
@dfn808
@dfn808 Рік тому
You make the coolest projects. Thanks for sharing!
@VolosProjects
@VolosProjects Рік тому
Tnx, i am glad you like it.
@911jedd
@911jedd 3 дні тому
Couple of helpful hints: TFT 1.28" PINS RX2 on my ESP32-WROOM is where the DC PIN goes TX2 on my ESP32-WROOM is where the CS PIN Otherwise all other pins are as noted below: #define TFT_MISO 5 #define TFT_MOSI 2 #define TFT_SCLK 15 #define TFT_CS 17 // Chip select control pin #define TFT_DC 16 // Data Command control pin #define TFT_RST 4 RTC - SCL -> PIN 22 RTC - SDA -> PIN 21 Finally had to modify my img.createSprite(240, 240); to img.createSprite(235, 235); For sketch to work. Probably a difference in Waveshare vs D-Lite or TFT displays. Great sketch!
@ebikeunlock
@ebikeunlock Рік тому
The casio theme is EPIC ! :D Thanks for sharing !
@VolosProjects
@VolosProjects Рік тому
casio, best watch ever :)
@moinshaikh6684
@moinshaikh6684 Рік тому
Such an excellent example of graphics display with analogue design.
@thisoldjeepcj5
@thisoldjeepcj5 Рік тому
More comments in the code would be very helpful. Thanks for great project.
@ginoparadiso3539
@ginoparadiso3539 Рік тому
Thats amazing. Thank you for sharing.
@marc.lepage
@marc.lepage Рік тому
I got one of these displays with included Raspberry Pi Pico microcontroller. Going to try it out soon!
@michaelbruns473
@michaelbruns473 Рік тому
fantastic, like always. Got it running on an ESP32 S2 Mini, with minimal changes to reconfigure SCL&SDA. Great looking and superbly working. Thank you!
@u1kim
@u1kim 11 місяців тому
Hi, I'm also trying to get it working with the S2 Mini but without success. May I ask what you did to reconfigure SCL & SDA? Thanks.
@michaelbruns473
@michaelbruns473 11 місяців тому
@@u1kim Just adapted #define USER_SETUP_ID 46 #define GC9A01_DRIVER #define TFT_CS 34 // TFT:CS 10 or 34 chip select control pin #define TFT_MOSI 35 // TFT: SDA = DIN= Data IN 11 or 35 #define TFT_SCLK 36 // TFT: SCL = Clock 12 or 36 #define TFT_MISO 37 // TFT: NC 13 or 37 #define TFT_DC 14 // TFT: DC #define TFT_RST 15 // TFT: RST That it
@u1kim
@u1kim 11 місяців тому
@@michaelbruns473Thank you very much.
@gt7984
@gt7984 Рік тому
Alot of potential, nice project. Only needs more sensors/modules :)
@seanchallenge
@seanchallenge Рік тому
Awesome thank you 😊
@rons1566
@rons1566 Рік тому
Very impressive Progect
@michaelnoardo3315
@michaelnoardo3315 Рік тому
can you make tutorial how you develop those dashes ? you do amazing work.....
@user-gd2sg5tv4m
@user-gd2sg5tv4m 5 місяців тому
I love your videos. Are there any plans to make a thermometer using gc9a01 and dht11?
@redhatbig5617
@redhatbig5617 Рік тому
Recently you are my favorite UKpostsr. I learn many esp32 tutorials. I have this gc9a01 screen and esp32 dev board.hhhh
@VolosProjects
@VolosProjects Рік тому
Thank you my friend it is nice to hear that.
@gnordh
@gnordh Рік тому
Have you made any speedometer using the round display? Would be nice to see you make a GPS speedometer showing speed, trip, time and distansce
@markmaker2488
@markmaker2488 Рік тому
Great job 👍. Can you do a tutorial on how you did the graphics for the clock face? Looking forward to your next video!
@VolosProjects
@VolosProjects Рік тому
Than you Mark, I will se what I can do.
@user-br6sf7rf4k
@user-br6sf7rf4k Рік тому
Thank you for useful videos! Can you please example how to send messages (sms, messengers) from phone to BT module?
@unomasenelmar
@unomasenelmar Рік тому
Magnífico, Excelente!
@VolosProjects
@VolosProjects Рік тому
tnx :)
@jackhampson8863
@jackhampson8863 Рік тому
Great project. I built it, and with some effort, got it working. At first a blank display. A 240x240 sprite seems to exceed ram availability for sprite rendering although only 8% was used by global variables. By moving the fixed arrays created and stored in ram in the setup section to a pre-calculated set of constant arrays stored in program memory (similar to the fonts arrays), ~9k of additional ram was freed (5% used) and the sprite displayed. I also found and fixed a bug that did not handle the 10th day or the 10th month leading "0" stuffing correctly by changing the "if (now.day() > 10)" to " if (now.day() >= 10)" (same for month). It looks impressive!!!. Thanks for posting.
@VolosProjects
@VolosProjects Рік тому
thank you, i am glad you made it work. memory is always problem with tjese development boards.
@DemainCestLundi
@DemainCestLundi 7 місяців тому
Hi, I have a similar problem, not white, but black (BL in forced on so no issue there).Sketch is running (checked that) but nothing on the screen. Couls you please share your array meomory allocation code, I'm not familiar with this. Thanks
@Bianchi77
@Bianchi77 Рік тому
Creative video, thank your for sharing, like it :)
@derpinbird1180
@derpinbird1180 Рік тому
This is awesome dude.
@VolosProjects
@VolosProjects Рік тому
Thank you
@WaschyNumber1
@WaschyNumber1 Рік тому
Looks very cool, beside I don't like personally round watches.
@yannisxidianakis6879
@yannisxidianakis6879 Рік тому
Very nice and usefull project.Great job!!!! I just built it and i have a problem with the time. It says 00 all the time the only thing that moves is the red dot. Any ideas?
@TBoy58_405
@TBoy58_405 Рік тому
Very nice watch face, even the dot that gives you a headache 😄 Would. be good to see if it works on the TTGO watch. Nicely done! 👍🏾🤓
@VolosProjects
@VolosProjects Рік тому
You gave me idea for my next video. Thank you, video will be very soon. Tnx again!
@TBoy58_405
@TBoy58_405 Рік тому
Glad I could help, but thank you for that watch face. It’s one of the best designs I’ve seen. Looking forward to your next video 👍🏾🤓
@borisjelcic1197
@borisjelcic1197 Рік тому
Kako lepo puno hvala
@VolosProjects
@VolosProjects Рік тому
Nema na čemu. Hvala na komentaru 😀
@colsanjaybajpai5747
@colsanjaybajpai5747 Рік тому
Wonderful
@rdp8545
@rdp8545 Рік тому
This is amazing!.... I'm thinking of doing this as a clock instead of a watch. Either 3D print a box for it or purchase a box from your local electronics hardware shop that will fit the components in. An Alarm added to it would be awesome to so that you can have it next to your bed as a timer and alarm clock!?
@VolosProjects
@VolosProjects Рік тому
Grat idea, that way you avoid using battery.
@mehmetaltinsoy525
@mehmetaltinsoy525 Рік тому
Great video.
@vijaysudhan4798
@vijaysudhan4798 27 днів тому
Great work . Made same as yours but not working. Mine tft is 7 pin.no BLk pin is there.plz hlp
@gep8639
@gep8639 Рік тому
You are really ginius love from india
@manukalias
@manukalias Рік тому
Loved that Round Dot going Anti-Clockwise 😍😍🤩🤩🤩🤩 Love & Respect from India 🙏🙏
@avr_stm_pro2955
@avr_stm_pro2955 Рік тому
Super Class 🙂👍👍
@GiovanniScafora
@GiovanniScafora Рік тому
Can the GC9A01 display be used with the mega 2560 pro embed board?
@greaterthanbut
@greaterthanbut Рік тому
Awesomeness!!!
@PCBWay
@PCBWay Рік тому
GOSh, This is really Impressive!! Would you mind sharing this watch to our open-source community-- Shared Project ?
@muhammadhussain7976
@muhammadhussain7976 Рік тому
You are doing a great job. However, I would highly appreciate if you can add some comments also in your code. 😉
@mesquitamk1681
@mesquitamk1681 Рік тому
Cool very good friend where can I buy the spray is it possible to send to Brazil
@arthiyasovarman4103
@arthiyasovarman4103 Рік тому
Hey, if you would make a PCB for this concept it would be great!
@musvc
@musvc Рік тому
great!, you just have to use "Seeed Studio XIAO ESP32C3" to make this smaller with charging capabilities, a nice case in a 3d printer... and done!
@MeinElektronikHobby
@MeinElektronikHobby Рік тому
... Hey, another question Is there a possibility that you integrate this setup into another display. You've already described Waveshare's 1.28" GC9A01 round display. And I think that would work great as a smartwatch. Any chance
@ziczack8760
@ziczack8760 Рік тому
I don't have a round screen so i used the same code and a different screen. My screen was ST7789 and the result is not perfect but still very fine. Thx, your projects are great.
@VolosProjects
@VolosProjects Рік тому
Thank you :)
@dayanandkumar5965
@dayanandkumar5965 Рік тому
Can you help me
@ziczack8760
@ziczack8760 Рік тому
@@dayanandkumar5965 What you wanna know, i'll try to help you.
@dayanandkumar5965
@dayanandkumar5965 Рік тому
@@ziczack8760 as of now i have solved but if there will be any issue i ask you
@dayanandkumar5965
@dayanandkumar5965 Рік тому
@@ziczack8760 it will be better if we connect through email
@mayxnerde2952
@mayxnerde2952 Рік тому
Thanks Volos for the Video . The clock looks very great !!! I have an idea , use a little GPS modul to get the timeinformation and some others, for example altitude ... and you not need wifi or Internet ;-) Greetz from Dessau, Maik DF7MR
@VolosProjects
@VolosProjects Рік тому
Thank you! do you know any good gps module, i tried few of them but they are not realy good.
@mayxnerde2952
@mayxnerde2952 Рік тому
@@VolosProjects Tks for your answer ... i used a Modul with "build in" antenna and works well, but the size is too big for a SmartWatch, but for a tablewatch is it perfect ... look for GM-22U7 in Ali-express Greetz from Dessau , Maik DF7MR
@raymonddompfrank1789
@raymonddompfrank1789 Місяць тому
@@VolosProjects Hi, another admirer of your projects here. I don't know if in the mean time you've found a GPS module that you like but I'm having good results with the tiny and very affordable ATGM336-based modules. I use them with their small patch antenna. They are quite sensitive. I've built several clocks using them. The command set is simple and straightforward, should you want to change the configuration.
@brianmiller6320
@brianmiller6320 Рік тому
Very nice looking display, one small criticism, you have not included any code to set the DS3231 to the correct time, I have used these before and know how to do this, others may not know how. Keep up the good work.
@VolosProjects
@VolosProjects Рік тому
yes, i can see now, than you for pointing me out.
@aleksejsjekimovs5452
@aleksejsjekimovs5452 Рік тому
I expected that you would make a custom PCB manufactured by PCBWay for the watch and make it a wearable
@gerdvogel1582
@gerdvogel1582 7 місяців тому
Hello, I am trying to use this sketch. Unfortunately the image and the pointer is not displayed. I use a round display with GC9A01 driver without LED and a ESP32 -WROMM 32 controller . Is there a newer version of this sketch ?? Greetings
@VolosProjects
@VolosProjects 7 місяців тому
Is any other example work ob your display, there is no problem with this sketch, you need to install library properly
@PlasmaFreak
@PlasmaFreak Рік тому
Volos you should make a esp32 smart glasses next. I made a janky pair on my channel, but I’m sure you could make a nice design with a much superior firmware.
@VolosProjects
@VolosProjects Рік тому
hm, nice idea, i will try to figure somathing. tnx
@humanbagel
@humanbagel Рік тому
hey can you post the PCB/schematic for that gadget at the beginning? I'm working on improving my soldering!
@VolosProjects
@VolosProjects Рік тому
hello, here is video, you can find PCB files in description ukposts.info/have/v-deo/rJubqnh8eYWXymg.html
@DemainCestLundi
@DemainCestLundi 7 місяців тому
Hi, I've been working on your example for a couple of days, with no success. Screen remains black. Wiring setup has been modified in TFT_eSPI Users set up. All examples of TFT_eSPI work like a charm. Clock is wired properly and gives time. I inserted a few 'fill' command through the program to check that the program is alive and it works. Must be a tweak somewhere but I have no idea, I'm not a newby in programming, but this is my first test with ESP32 end round TFT. Any idea ?
@VolosProjects
@VolosProjects 7 місяців тому
memory, later i found that some boards have problems with this sketch ... also have you check tutorial from description?
@DemainCestLundi
@DemainCestLundi 7 місяців тому
@@VolosProjects thanks for your quick reply. Yes I checked the tuto, again, Wiring, parameters are ok and all exemples in TFT_eSPI work fine. I saw in the comments something about memory management with some parameters to set in the sketch, but with no detail… I’m still inquiring. And yes the board is AliExpress, as well as TFT, but strangely enough all examples including sprites work. Thanks anyway.
@DemainCestLundi
@DemainCestLundi 7 місяців тому
@@VolosProjects OK, solved it. It must indeed be a memory issue. My board can't create a Sprite of 240x240. 239x239, ok, but not with your sketch, even switching color depth to 8. So, I found that with a Sprite size of 234x234, and a few adjustments due to the reduced size, the sketch works.
@nightcube1812
@nightcube1812 Рік тому
Veri intersting!
@deeprobardhan3411
@deeprobardhan3411 Рік тому
Ok first take ur breadth man 😂 and the project is great 👍
@ReX_PL_DE
@ReX_PL_DE Рік тому
When does the seconds counter start running to the left?
@armanrezaei5668
@armanrezaei5668 Рік тому
it's so great if you make it smarter even better thx
@Ownedyou
@Ownedyou Рік тому
Great project! Without ample sleep time though, ESP32 can drain that battery quickly. Maybe LiPo is the better option, there's a Chinese company that will do custom shaped LiPos, not sure how much they charge though.
@VolosProjects
@VolosProjects Рік тому
I agree, this is more suitable to be conected all the time with phone charger forexample
@MPElectronique
@MPElectronique Рік тому
Would you be able to do a sprite tft tutorial ? thanks. marc. 😮
@VolosProjects
@VolosProjects Рік тому
I am planing to do that :)
@MPElectronique
@MPElectronique Рік тому
@@VolosProjects I cant wait!!! :-D
@CAPTINKING
@CAPTINKING Рік тому
I really like your videos. Id find it nice if youd make a video explaining how to combine two codes and some coding tips in general for Arduino IDE.
@VolosProjects
@VolosProjects Рік тому
Thank you.
@clementyap1009
@clementyap1009 Рік тому
How do you build your own GUI setup ? like the way how the face of the display should constructed graphically.
@VolosProjects
@VolosProjects Рік тому
There is no easy way, i use simple functions, lines, rectangles and circles and ofcourse lots of time and reuploads😄
@abumuhandisalturki1300
@abumuhandisalturki1300 Рік тому
Can you make binary watch and minify it so we can put it in a case that is going to be printed using 3d printer. It would be cool if you do it.
@VolosProjects
@VolosProjects Рік тому
i love binary watches, tnx for idea
@prabhakarmishra2182
@prabhakarmishra2182 Рік тому
Nice
@JeanBrito666
@JeanBrito666 Рік тому
ESP32 has a builtin RTC, did you mind in using it?
@tokeiitoo
@tokeiitoo Рік тому
Would it be possible to make a big wall clock using these components?
@auxencefromont1989
@auxencefromont1989 Рік тому
If you find a big version of the screen, sure
@nguyentinh5663
@nguyentinh5663 Рік тому
hi , can you help me this mistake :ledcSetup' was not declared in this scope
@lolaa_emo4916
@lolaa_emo4916 Рік тому
Amazing work Can it work on arduino uno or nano?
@VolosProjects
@VolosProjects Рік тому
not realy,arduino have much less memory. you can use arduino to display simple text or image (very slowly) but this sketch will not work.
@benabusthethird9751
@benabusthethird9751 Рік тому
I kinda feel like this is under utilising the esp32. Those little things are surprising
@zaprodk
@zaprodk Рік тому
I don't see link for the code in the description?
@mithilpanchal6901
@mithilpanchal6901 Рік тому
Please make gps nevigation with this
@matsandersen6119
@matsandersen6119 Рік тому
NIIICE !!
@VolosProjects
@VolosProjects Рік тому
Thank you!
@jettaglnegro
@jettaglnegro Рік тому
Cual servicor mqtt utilizas?
@stevenbennett6123
@stevenbennett6123 Рік тому
Very interesting video, that round OLED would be great for creating replacements for magic eye tubes for vintage radios, which are now hard to find. I'll send you a link to your email address as links are removed by UKposts. A magic eye would be a good next project?
@VolosProjects
@VolosProjects Рік тому
thank you, I recieved your mail. I never heard about magic eye. I am not realy into radio comunication. i will check it more deeply. Thank you again.
@stevenbennett6123
@stevenbennett6123 Рік тому
@@VolosProjects Great thanks, I just subscribed so I will be notified.
@shivstark8494
@shivstark8494 Рік тому
Hello there Volos. I really liked your previous two vedios. To be honest I am trying to create my own smartwatch, but currently I do not have an esp. So can you check once that can we run these round displays using Raspberry pi pico? i found a 9s long vedio but it didn't show any details. it would be very nice of you if you could help me with this. ❤
@VolosProjects
@VolosProjects Рік тому
Hi, thank you. I want to help you but i dont own rpi, i tried ise them long time ago but back then Arduino was my favoutite so i sold my rpis.
@shivstark8494
@shivstark8494 Рік тому
Can't you buy one? Or atleast help me by telling me how to do it? Still thanks a lot for seeing mey comments and responding to it
@gacherumburu9958
@gacherumburu9958 Рік тому
👍👍
@thanatosor
@thanatosor Рік тому
try building this and appreciate more engineering on those smart watches you guys are wearing
@satbeginner
@satbeginner Рік тому
Hi, thanks for the great movie, I will try to reproduce your project. Could you plese tell me what the pinout for the RTC in combination with the ESP32 is? I already have a display working (using other code, same TFT_eSPI library) . Thanks again, Leo
@VolosProjects
@VolosProjects Рік тому
Thank you! I used defoult I2c pins for RTC. SDA: SDA (default is GPIO 21) VCC: usually 3.3V or 5V SCL: SCL (default is GPIO 22)
@satbeginner
@satbeginner Рік тому
@@VolosProjects Hi, thanks for your quick reply, but I think I have a conflict in how I configured the pin to be used for the TFT. I also have not the same TFT, I have a ST7789 that has no chip-select. Could you please send me the part of User_Setup.h where you have configured the pins for your TFT so I can look if that inproves anything? Thank you again, Leo
@satbeginner
@satbeginner Рік тому
Hi, I managed to get it working. I changed your code from using the RTC, to use the WiFI onboard of the ESP32 to get the time through NTP. Here is a link to the changed code. Thanks for your ideas and work, Leo www.dropbox.com/s/ap3xr4nap66txqj/watchESP_V2.03.zip?dl=0
@dayanandkumar5965
@dayanandkumar5965 Рік тому
@@satbeginner sir i am getting flickering on display what should i change in code. Where i need to write byte as volos has told to use byte to avoid flickering. Please help me sir 🙏
@satbeginner
@satbeginner Рік тому
@@dayanandkumar5965 do you use my software using NTP or the Volos one?
@andrewlarkham8502
@andrewlarkham8502 Рік тому
Great project! but I have a problem. My display has the pins in a different order. Fortunately I noiticed that VCC and GND were reversed, and wired the pins as I thought they should be. There was no connector for BLK. Powered up and nothing! Blank screen. I made the changes to the pins as detailed in the earlier video, and double checked my wiring.. Anyone got any suggestions? Thanks Andy
@VolosProjects
@VolosProjects Рік тому
Hello, are you sure your display uses same driver chip?
@andrewlarkham8502
@andrewlarkham8502 Рік тому
@@VolosProjects Hi Velos. Thanks for the reply.. Yes. Info on the back say: 1.28"TFT VER1.0 240*240 IC:GC9A01.If it helps pinout from left is VCC GND SCL SDA DC CS RST. Anyone else used this display? I guess its back to basics with some of the example code - and check that the display works ok.
@VolosProjects
@VolosProjects Рік тому
And did you edit library?
@andrewlarkham8502
@andrewlarkham8502 Рік тому
@@VolosProjects Yep! :-)
@andrewlarkham8502
@andrewlarkham8502 Рік тому
@@VolosProjects OK made some progress... Forgot to select the driver in the user.setup.select.h. :-(. The screen now shows some activity - but not as expected. Just a thought - of the many ESP32 boards to choose from I wonder if that makes a difference? I'm using a generic Chinese board. Might the pinouts be different?
@neilcameron4680
@neilcameron4680 Рік тому
Which ESP32 version did you use for the sketch? The current version is 2.0.3 in the Arduino IDE.
@VolosProjects
@VolosProjects Рік тому
Sorry, i dont umderstand. Version of esp32
@neilcameron4680
@neilcameron4680 Рік тому
When you select Boards Manager in the Arduino IDE and enter ESP32, the Espressiff Systems version of ESP32 is displayed.
@VolosProjects
@VolosProjects Рік тому
@@neilcameron4680 i am using old version with old boards, my version is 1.0.6, did you try sketch, it is not working? Did you setup tft_espi library properly?
@neilcameron4680
@neilcameron4680 Рік тому
The combination of new version of ESP32 (2.0.3) and the ST7899 LCD screen leads to problems with displaying sprites. Use of tft.pushImage works, but with screen flicker, while img.pushImage does not always work.
@VolosProjects
@VolosProjects Рік тому
@@neilcameron4680 now i remember i had new version of ESP32 boards definition but i also had many problems so i returnet to old boards. But i also have some boards that can be used only with new 2.0 version. I hope that someone will fix that so we dont need to switch between thease two
@mmaranta785
@mmaranta785 Рік тому
What are sprites?
@MPElectronique
@MPElectronique Рік тому
I tried it, but nothing on the screen, the ds3231 is working perfectly. other TFT-eSPI example are working fine. An idea? Thanks. Marc.
@VolosProjects
@VolosProjects Рік тому
did you edit tft-espi library. check my previous video
@MPElectronique
@MPElectronique Рік тому
@@VolosProjects yes. Other tft-eSPI example works
@zhuhh
@zhuhh Рік тому
​@@MPElectronique Have you solved it? I fill the screen with other colors to display, but the clock doesn't display
@MPElectronique
@MPElectronique Рік тому
@@zhuhh no :(
@johnknight9422
@johnknight9422 Рік тому
@@MPElectronique The latest version 2.0.3 of Espressiff Systems for ESP32, has problems with this code and some of the TFT_eSPI drivers. Using the older version 1.0.6, compile and runs correctly.
@aldrins1922
@aldrins1922 Рік тому
My GC9A01 does not have BLK pin. Does the code will still work?
@VolosProjects
@VolosProjects Рік тому
It will work, backlight will fixed
@aldrins1922
@aldrins1922 Рік тому
@@VolosProjects Thank you, still waiting for the display...
@smartassist9700
@smartassist9700 Рік тому
I love that round screen! However, you mentioned a new ESP32 s3 with a screen on top. It was a little larger than other esp32s. If we used that new esp with rectangle screen, can we better arrange components, either stacked, or on each end of ESP32/screen with each component in a self made case for each, slide onto watch band. It would wrap around band(each cased module with the ESP32-screen the center item on band. (Just thinking out loud but no experience BIENG very respectful and humble asking the questions.). I want one! Hahaha
@BlondieSL
@BlondieSL Рік тому
Does that come in a "touch" version?
@VolosProjects
@VolosProjects Рік тому
I don't know , i never herad on round touch display module.
@dayanandkumar5965
@dayanandkumar5965 Рік тому
@Volos Projects sir i need your help please
@TechwithRX
@TechwithRX Рік тому
Can I use ds1307 instead of ds3231?
@VolosProjects
@VolosProjects Рік тому
yes you can , but you will need change that in code
@SolehAlYunus
@SolehAlYunus Рік тому
can i make it and upload it to my channel? I'm using a st7789 LCD display. I will include your channel link in the video description.
@VolosProjects
@VolosProjects Рік тому
Yes, feel free to make video with this. You can include my link, thank you.
@SolehAlYunus
@SolehAlYunus Рік тому
@@VolosProjects thankyou very much Sir.
@SolehAlYunus
@SolehAlYunus Рік тому
I have uploaded the video sir, thank you for the tutorial Link: ukposts.info/have/v-deo/kKqrgI-LiIN02ac.html
@hokazshinitzu9042
@hokazshinitzu9042 Рік тому
Hi, warum nur immer alles mit nem esp32? Warum kein Arduino pro oder 8266 loline?
@ChrisZang
@ChrisZang Рік тому
Ich vermute jetzt mal, dass das ist weil der ESP32 so ziemlich die "Eierlegende Wollmilchsau" ist und ausserdem super-billig.
@user-dd3if5yq3v
@user-dd3if5yq3v 5 місяців тому
如何调整时间?
@jacekf
@jacekf Рік тому
would it work on esp8266
@VolosProjects
@VolosProjects Рік тому
Sorry, it will not.
@jacekf
@jacekf Рік тому
add compass?
@hudsonbear5038
@hudsonbear5038 Рік тому
Was thinking the same... A compass with that display... AWESOME... Add in Baro and Alti for good measure too.. Perfect for outdoor projects!
@f7p1764
@f7p1764 Рік тому
your source code is messed up with tabs and you don't use { on if's and for loop's, I can't run your example from github..
@badushashaik8429
@badushashaik8429 10 місяців тому
not working with 1.3" 240*240 display no cs pin
@VolosProjects
@VolosProjects 10 місяців тому
First make your display work, then try this example
@badushashaik8429
@badushashaik8429 9 місяців тому
@@VolosProjects i tested with three brand new disppp but i changed the espi lib setting than it working..thank you very much
@badushashaik8429
@badushashaik8429 9 місяців тому
@@VolosProjects after tft_espi modification it is working
@TBL_stevennelson
@TBL_stevennelson Рік тому
Lol head joke was good
@LordNefarius
@LordNefarius Рік тому
You sound like Betty from Kung Pow.
@VolosProjects
@VolosProjects Рік тому
Thank you, I always wanted to sound like Betty.
@phakalanep7241
@phakalanep7241 Рік тому
Arduino will not compile due to missing image files
@VolosProjects
@VolosProjects Рік тому
What image file, there is no image files
@phakalanep7241
@phakalanep7241 Рік тому
@@VolosProjects your code says img.setFreeFont(&DSEG7_Modern_Bold_20); img.drawString(s,sx,sy-36); img.setFreeFont(&DSEG7_Classic_Regular_28); img.drawString(h+":"+m,sx,sy+28); img.setTextFont(0); img.fillRect(70,86,12,20,color3); img.fillRect(84,86,12,20,color3); img.fillRect(150,86,12,20,color3); img.fillRect(164,86,12,20,color3); img.setTextColor(0x35D7,TFT_BLACK); img.drawString("MONTH",84,78); img.drawString("DAY",162,78); img.setTextColor(TFT_ORANGE,TFT_BLACK); img.drawString("Phakalane",120,174); img.drawString("***",120,104); img.setTextColor(TFT_WHITE,color3); img.drawString(m1,77,96,2); img.drawString(m2,91,96,2); img.drawString(d1,157,96,2); img.drawString(d2,171,96,2); for(int i=0;i
@marcosdasilva7409
@marcosdasilva7409 Рік тому
🇧🇷👏🇧🇷👏🇧🇷👏🇧🇷👏
@user-bl8db2tu3j
@user-bl8db2tu3j Рік тому
А вы из России? По акценту показалось что вы Наш))
@piddepetje
@piddepetje Рік тому
Make a crypto Ticker please
@doctoralam1995
@doctoralam1995 Рік тому
Where is the smart watch...its just a circuit board with smart watch features barely
@jamesbucsis6296
@jamesbucsis6296 Рік тому
How to put on your wrist . Lol
@browaruspierogus2182
@browaruspierogus2182 Рік тому
esp takes too much power
Round IPS display on GC9A01 controller
27:17
Электроника в объективе
Переглядів 360 тис.
Try these 16 Brilliant ESP32 projects!!!
11:18
ToP Projects Compilation
Переглядів 502 тис.
«Що ви тут лазите?». День з військовими ТЦК Києва + ENG SUB
24:04
Слідство.Інфо | Розслідування, репортажі, викриття
Переглядів 301 тис.
I PUT MY ARMOR ON (Creeper) (PG Version)
00:19
Sam Green
Переглядів 2,8 млн
Exotic Round Displays and How to Use Them
14:21
Mr. Volt
Переглядів 321 тис.
8 Brilliant ESP32 Smartwatch Projects for 2024!
6:09
ToP Projects Compilation
Переглядів 17 тис.
It's time. - Open Source Smartwatch
10:49
Linus Tech Tips
Переглядів 1,5 млн
GC9A01 Round LCD with ESP32 & Arduino
45:46
DroneBot Workshop
Переглядів 264 тис.
inventor aw - This Device is very helpful ,, you can make at home
6:47
My Custom Smartwatch is DONE!
10:21
Stephen Hawes
Переглядів 83 тис.
ESP32 super smart watch tutorial
14:06
Gabriel McFarlane
Переглядів 66 тис.
Зачем вы показываете ноутбук в аэропорту?✈️
0:29
The Worst Product I've Ever Reviewed... For Now
25:04
Marques Brownlee
Переглядів 7 млн
Робот зарядка на 65W🤖
0:36
serg1us
Переглядів 1,6 млн
#smartphone #screenprotection #tech #shorts #magicjohn
1:01
MagicJohn
Переглядів 6 млн
Как открыть дверь в Jaecoo J8? Удобно?🤔😊
0:27
Суворкин Сергей
Переглядів 726 тис.