Current Product Don't Have Test Firmware
Note: pls, use PC chrome/edge browser, if can't connect, refresh the webpage.
1. Click connect button
2. After connected successfully, pick a firmware
3. Click the burn button
4. After burning successfully, Unplug the device and restart.
ATOM Display is an all-in-one display driver kit, Use FPGA to simulate traditional SPI TFT-LCD Data output
. This kit supports image at a maximum resolution of 1280 x 720 pixels. It provides advanced signal with great precision colors. Integrated 2.4G Wi-Fi, with 8M Flash + 2M PSRAM memory combination, RGB TO HDMI convert chip. So small yet powerful, which can replace the traditional display driving solution.
Note: ATOM Display needs to be paired with monitors with adaptive resolution scaling.
Resources | Parameter |
---|---|
FPGA | Gowin GW1NR-9C |
LT8618SX | RGB to HDMI chip, supports 24bit color depth |
Maximum image output size | 720P(1280x720) |
Output frame rate | 1280x720 60Hz |
USB driver chip | CH9102 |
Net weight | 21g |
Gross weight | 34g |
Product Size | 64 * 24 * 29mm |
Package Size | 76 * 46 * 29mm |
ATOM | G39 | G27 |
---|---|---|
BUTTON | SIGNAL | / |
RGB LED | / | SK_DIN |
ATOM | G25 | G21 | 5V | GND |
---|---|---|---|---|
LT8618SX | LT_CSDA | LT_CSCL | VIN | GND |
Before using the case program in the M5GFX library, you need to change the imported header file to adapt to the currently used device. Introduce #include <M5AtomDisplay.h>
as shown in the following program example, and create an instance M5AtomDisplay display;
#include <Arduino.h>
#include <vector>
#include <M5AtomDisplay.h>
M5AtomDisplay display;
void setup(void)
{
display.begin();
}
void loop(void)
{
display.fillScreen(RED);
delay(1000);
display.fillScreen(GREEN);
delay(1000);
display.fillScreen(BLUE);
delay(1000);
}