KS0454 keyestudio Circular TFT LCD Smart Watch Display Module
Overview
Keyestudio Circular TFT LCD is a 2.2-inch TFT liquid crystal display module. Its input voltage is 3.3V~-5.5V. It can display colored patterns and text.
The fastest LCD refresh on the module is about 256MS, which can realize multiple pattern loop display, and dynamic display effect.
Currently, 19 common colors are defined in the library, and users can also customize 16-bit color codes.
During the experiment, we set the coordinates to the coordinate center of the display, and the maximum absolute value of the positive and negative half axes is 64.
In order to fix on other devices, the module comes with 2 positioning holes with a diameter of 3mm.
Special Note:
The parameter 2.2" is marked according to the screen specifications provided by the screen supplier. The actual display area is approximately 1.26" (32mm in diameter).
Technical Details
- Working voltage: DC 3.3V-5.5V
- Working current: 50MA
- Maximum power: 0.5W
- Operating temperature range: -25~+60℃
- Interface: 8pin header (2.54mm pitch)
- Fixing hole diameter: 3mm
- Dimensions: 47mm*44mm*6mm
- Weight: 13.3g
- Environmental attributes: ROHS
TFT LCD Dimensions
PINOUTS
Connection
Test Code
Note: before upload the code, don’t forget to place the necessary library into Arduino IDE library directory.
Here use the Arduino IDE 1.8.7 version. Not sure whether other versions are compatible.
#include "DFRobot_ST7687S_Latch.h" #ifdef __AVR__ uint8_t pin_cs = 3, pin_rs = 5, pin_wr = 6, pin_lck = 7; #else uint8_t pin_cs = D3, pin_rs = D5, pin_wr = D6, pin_lck = D7; #endif DFRobot_ST7687S_Latch tft(pin_cs, pin_rs, pin_wr, pin_lck); void setup(void) { Serial.begin(115200); tft.begin(); tft.fillScreen(DISPLAY_WHITE); } void loop(void) { tft.drawTriangle(-20, -50, 0, 0, 50, 20, DISPLAY_ORANGE); //draw triangle delay(1000); tft.fillTriangle(-20, -50, 0, 0, 50, 20, DISPLAY_ORANGE); //fill triangle with color delay(1000); tft.fillScreen(DISPLAY_WHITE); }
Test Result
Done uploading the code, TFT LCD will display the patterns.
Resource
- Download all the relevant info from the link:
Buy from
- [ Official Website]
- [ Shop on Aliexpress ]