Retro Watch With ESP32 and Round TFT Display GC9A01A
by AZDelivery in Circuits > Arduino
156 Views, 1 Favorites, 0 Comments
Retro Watch With ESP32 and Round TFT Display GC9A01A
.png)
This instructable is about the implementation of a retro-style watch, which is based on an ESP32 microcontroller and uses a round TFT display for display. With the possibility of the time over NTP (Network Time Protocol) Synchronizing automatically can be dispensed with.
Supplies
ESP32S2 microcontroller (But you can use any other ESP32 board)
Breadboard or prototyping board
some wires
The Circuit

Connect the Display to the ESP32:
Display -> ESP32
RST -> GPIO 3
CS -> GPIO 5
DC -> GPIO 7
SDA -> GPIO 9
SCL -> GPIO 11
Gnd -> Gnd
VCC -> 3V3
Prepare Arduino IDE
If you are programming with an ESP32 for the first time, copy the following link to Arduino IDE under Fille-> Preferences -> Additional Boards Manager URLS: https://dl.espressif.com/dl/package_esp32_index.json
And install the ESP32 package in the board management.
Note: For this project to work you need to use the boards version 2.x.x, it will not work with version 3 and above
To flash the board, select the "ESP32S2 DEV Module". Hold down the "0" button and press the reset button once. This makes the board in boot mode and a COM port should be visible.
Next you need to install the TFT_eSPI library by bodmer, this is simply done by searching "TFT_eSPI" in the library manager.
If the library is installed, only the user_setup.h File for the display driver in the Library directory (SketchBook Directory/libraries/TFT_eSPI/user_setup.h) can be adjusted:
First copy the existing one user_setup.h, delete the content and copy the following lines into the file:
Alternatively, you can also the file.
Downloads
The Code
First we bind the libraries that are required for SPI communication, the TFT display and for the network connection:
Next we define some variables that contain the position of the center of the watch, as well as the time (hours, minutes, seconds) and other configurations, such as the address of the NTP server. The PI value is needed to calculate the positions of the pointers in the circle because the pointers' coordinates run on a circular path. The constants SSID and password must be changed to your network access data.
In the setup() the WiFi connection is built up and the time is called up using the NTP server. The dial is then drawn.
In order to visualize the clock, of course we also have to create a dial with the hourly markings. Here we draw the hour markings (1 to 12) on the dial. This is done By calculating the X and Y coordinates for each point based on the circle geometry.
Now come the actual clock hands, which are displayed based on the current time. The draw_hour() and draw_minute() methods draw the hour and minute hands on the clock face. The mode parameter determines whether the hand is drawn or deleted.
The second hand is displayed slightly differently - as a small circle.
The date() method displays the current date depending on the position of the hour hand above or below the center point.
In the loop() function, the time is continuously updated and the pointers are redrawn accordingly. First, the previous pointer position is deleted to avoid deleting the entire display. The current time is then displayed.
Downloads
Result
The project can of course also be soldered on a board for long-term operation or installed in a 3D printed housing, here there are no limits to creativity. Furthermore, the colors of the clockwise can easily be changed, or other information is displayed instead of the time. Since the synchronization of the time of the NTP Time Server is queried on the Internet, a WLAN connection (2.4GHz) must be available.