3.2inch SPI Module ILI9341

Aus Aptofun WIKI
Version vom 25. März 2021, 16:28 Uhr von Webmasters (Diskussion | Beiträge) (Product Video)
(Unterschied) ← Nächstältere Version | Aktuelle Version (Unterschied) | Nächstjüngere Version → (Unterschied)
Wechseln zu: Navigation, Suche

Product Video

<youtube width="640" height="360">gLucw5Tj6SU</youtube>

Product Picture

300px-MSP3218-3.2-SPI-02.jpg 300px-MSP3218-019.jpg 300px-MSP3218-020.jpg

Product Description

  • 3.2-inch color screen,support 65K color display,display rich colors
  • 320X240 resolution, optional touch function
  • Using the SPI serial bus, it only takes a few IOs to illuminate the display
  • Easy to expand the experiment with SD card slot
  • Provide a rich sample program
  • Military-grade process standards, long-term stable work
  • Provide underlying driver technical support

Product Parameters

Name Parameter
Display Color RGB 65K color
SKU have touch screen: MSP3218
have no touch screen: MSP3217
Screen Size 3.2(inch)
Type TFT
Driver IC ILI9341
Resolution 320*240 (Pixel)
Module Interface 4-wire SPI interface
Active Area(AA area) 48.6x64.8(mm)
Module PCB Size 55.04x89.3(mm)
Operating Temperature -20℃~60℃
Storage Temperature -30℃~70℃
VCC power voltage 3.3V~5V
Logic IO port voltage 3.3V(TTL)
Power Consumption TBD
Rough Weight(Package containing) No touch: 41(g) / With touch: 52(g)

Interface Definition

500px-MSP3218-021.jpg

Number Pin Label Description
1 VCC 5V/3.3V power input
2 GND Ground
3 CS LCD chip select signal, low level enable
4 RESET LCD reset signal, low level reset
5 DC/RS LCD register / data selection signal,high level: register, low level: data
6 SDI(MOSI) SPI bus write data signal
7 SCK SPI bus clock signal
8 LED Backlight control, high level lighting,if not controlled, connect 3.3V always bright
9 SDO(MISO) SPI bus read data signal, if you do not need to the read function, you can not connect it
(The following is the touch screen signal line wiring, if you do not need to touch function or the module itself does not have touch function, you can not connect them)
10 T_CLK Touch SPI bus clock signal
11 T_CS Touch screen chip select signal, low level enable
12 T_DIN Touch SPI bus input
13 T_DO Touch SPI bus output
14 T_IRQ Touch screen interrupt signal, low level when touch is detected

Product Documentation

Program Download

Reference Materials

How to use on Arduino

Run Arduino Demo in spi model

Overview

When we directly connected the SPI display module without the on-board level conversion module to the Arduino,we found that it could not run at all.This is because the SPI module's pin can only input a 3.3V high level,while the Arduino output has a high level of 5V.To run successfully, there are two Method: short circuit method and external level conversion module method.
The short-circuit method has the advantages of simple operation, short wiring, and no need for external devices.The disadvantage is that the module generates a large amount of heat during operation.Will affect the life of the module.
The external level conversion module method is a normal operation, and the advantage is that the module generatesless heat and runs stably during operation, and the disadvantage is that the operation is slightly complicated.(An external level shifting module is required) to increase the cost (additional level conversion module is required).
In summary, it is recommended to use the external level shifting module method.

Short-Circuit Method

The short-circuit method is to short theJ1component position (shown below) with solder on the back of the module.After shorting, the runtime module VCC The pin must be connected to a 5V power supply (not connected to 3.3V).

600px-MSP2402-011.jpg

External Level Conversion Module Method

The so-called external level conversion module method is to connect the Arduino and the display modulethrough an external level conversion module, so that The 5V high level of the Arduino output is convertedto 3.3V by the level conversion module and then input to the display module. As shown below:

600px-MSP2402-012.png

Common Software