SEA0009
HDMI Conversion Board with 5" RGB TFT Display
Request a Quote
800x480 HDMI Display with Adapter Conversion Board
The SEA0009 is a display format converter board that translates HDMI video output to 24-bit true-color RGB. The board includes a 5" RGB TFT display with optional capacitive touch. The I²C capacitive touch screen controller signals are passed through to the host interface. The board is great for use with a Raspberry Pi (such as the Raspberry Pi 3 Model B or A+) or any single-board computer that provides an HDMI video output. There is a programmable on-board EEPROM that provides the HDMI video source with an EDID (the display resolution configuration).
Technical Overview
Compatibility | Raspberry Pi, SBC, or personal computer with HDMI output |
External Interfaces | HDMI, MCU, 24-bit RGB, PCAP I2C, EDID |
Included Display | 5-inch RGB TFT (DT050BTFT or similar) |
Display Resolution | Supports up to 1080p in 24-bit true-color pixel format |
Display Backlight Current | 60mA (75 mA Max) |
Dimensions (w x h) | 121 x 76 mm |
Power Supply Voltage | 5V |
Display Touch Screen Option | Capacitive Touchscreen |
Display Touch Screen Controller | Focaltech FT5426 (or similar) |
Displaytech Part Number | SEA0009 |
Datasheets
Support Documents
Technical Support Notes
Display
See DT050BTFT for display specific documents.
PCAP Sample Code
Verify that line 45 in the sample code is defined for the 5" display:
#define DT050TFT
Setup SEA0009 (PCAP) on Raspberry Pi
A quick overview on how to set up the SEA0009 HDMI converter with DT050BTFT-PTS on Raspberry Pi
- Create a Raspbian Stretch Full SD card using Etcher
-
Modify /boot/config.txt to enable i2c and the 5 HDMI settings
Add these lines at the end of the file, to enable i2c, the PWM, and to set the LCD parameters:
- #SEACOMP demo - dtparam=i2c_arm=on - gpio=18=op,dh - hdmi_force_hotplug=1 - hdmi_group=2 - hdmi_mode=87 - hdmi_cvt 800 480 60 6 0 0 0
- Connect all hardware together
- Start up Raspberry Pi and go through the setup
- Obtain the the touchscreen driver and Slideshow application onto a USB stick. Insert the USB stick, open file manager, open a command line, and run the setup
See this Raspberry Pi Getting Started doc.
PCAP driver directions for SEA0009 on Raspberry Pi
Building the Kernel
- Follow Raspberry Pi website instructions for kernel development
- Download/install kernel headers
- Download other things (gcc? make?)
- Patch driver
- Make modules install
- Copy compiled module back over the one on the USB stick
-
To build the modified driver, apply the patch edt-ft5x06.patch to edt-ft5x06.c, then
make -j4 modules install