Template: Pico LCD 0.96 Spec

From Waveshare Wiki
Revision as of 10:35, 11 May 2021 by Waveshare-eng11 (talk | contribs) (Created page with "==Overview== 0.96inch LCD Display Module For Raspberry Pi Pico, 65K RGB Colors, 160×80 Pixels, SPI Interface ==Features== *160×80 resolution, 65K RGB colors, clear and color...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Overview

0.96inch LCD Display Module For Raspberry Pi Pico, 65K RGB Colors, 160×80 Pixels, SPI Interface

Features

  • 160×80 resolution, 65K RGB colors, clear and colorful displaying effect
  • SPI interface, requires minimal IO pins
  • 1x joystick and 2x user buttons for easy interacting

Specifications

  • Operating voltage: 2.6~5.5V
  • Resolution: 160×80 pixels
  • Communication interface: 4-wire SPI
  • Display size: 21.70 × 10.80mm
  • Display panel: IPS
  • Pixel size: 0.1356 × 0.135mm
  • Driver: ST7735S
  • Dimensions 52.00 × 25.00mm

Pinout

Pico-LCD-0.96-details-inter.jpg

Dimension

Pico-LCD-0.96-details-size.jpg

Working Protocol

0.96inch lcd module spi.png
Note: Different from the traditional SPI protocol, the data line from the slave to the master is hidden since the device only has a display requirement.
RESX Is the reset pin, it should be low when powering the module and be higher at other times;;
CSX is slave chip select, when CS is low, the chip is enabled.
D/CX is data/command control pin, when DC = 0, write command, when DC = 1, write data
SDA is the data pin for transmitting RGB data, it works as the MOSI pin of SPI interface;
SCL work s the SCLK pins of SPI interface.
SPI communication has data transfer timing, which is combined by CPHA and CPOL.
CPOL determines the level of the serial synchronous clock at an idle state. When CPOL = 0, the level is Low. However, CPOL has little effect on the transmission.
CPHA determines whether data is collected at the first clock edge or at the second clock edge of the serial synchronous clock; when CPHL = 0, data is collected at the first clock edge.
There are 4 SPI communication modes. SPI0 is commonly used, in which CPHL = 0, CPOL = 0.