Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

History

6 Commits

Repository files navigation

ST7565 LCD driver for micropython

Description

This is micropython driver for LCDs based on ST7565 controller. Only serial mode sopported.

Wiring example for ESP8266-based modules

LCDESP8266
A0GPIO 0
RSTGPIO 16
CSGPIO 15
DATAGPIO 13
CLOCKGPIO 14

Usage example

importmachinefromst7565importST7565RST=Pin(16, Pin.OUT)
A0=Pin(0, Pin.OUT)
CS=Pin(15, Pin.OUT)
spibus=SPI(1, baudrate=1000000, polarity=1, phase=1)
display=ST7565(spibus, A0, CS, RST)
display.fill(1)
display.show()

About

Micropython driver for ST7565 based LCD

Topics

Resources

Stars

14 stars

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages