[go: up one dir, main page]

Skip to content

This is a higher-level library to allow MicroPython users to easily control the ESP32-2432S024C, a smaller version of the Cheap Yellow Display (CYD) but with capacitive (c) touch. Let's call it CYDc.

License

Notifications You must be signed in to change notification settings

jtobinart/Micropython_CYDc_ESP32-2432S024C

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

73 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MicroPython_CYDc_ESP32-2432S024C

labeled image of front side of ESP32-2432S024C labeled image of rear side of ESP32-2432S024C This is a higher-level library to allow MicroPython users to easily control the ESP32-2432S024C, a smaller version of the Cheap Yellow Display (CYD) but with capacitive (c) touch. Let's call it CYDc. This device uses the cst820 capacitive touch driver chip. Little documentation is available online about the cst820. Advance gesture recognition, pressure measurements, and interrupt pin on the cst820 are nonfunctioning. You can easily capture one and two-finger taps and long presses. Two-finger taps and presses work best when fingers are far apart.

Dependencies

This library depends on:

A copy of rdagger's ili9341 library is available in the resources folder.

Installation

Follow MicroPython's installation instructions to get your CYDc board ready. Use your preferred MicroPython IDE (e.g. Thonny) to transfer CYDc.py and ili9341.py to your CYDc board.

Usage

You can create a new main.py file and use:

from cydc import CYD
cyd = CYD()

or

from cydc import CYD
cyd = CYD(rgb_pmw=False, speaker_gain=512,
          display_width=240, display_height=320,
          wifi_ssid = None, wifi_password = None)

to access the CYDc or you can use one of the example programs provided in the repository. You can use the touch demo to test one and two-finger taps and two-finger long presses.

License

The repository's code is made available under the terms of the MIT license. Please take a look at license.md for more information.

About

This is a higher-level library to allow MicroPython users to easily control the ESP32-2432S024C, a smaller version of the Cheap Yellow Display (CYD) but with capacitive (c) touch. Let's call it CYDc.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages