#driver #spi #embedded-hal #hal #embedded #tsc0246

no-std tsc2046

TSC2046 SPI 4-Wire Touch Screen Controller driver

1 unstable release

0.1.0 Mar 12, 2024

#649 in Hardware support

Download history 127/week @ 2024-03-12 3/week @ 2024-03-19 1/week @ 2024-03-26 17/week @ 2024-04-02

148 downloads per month

MIT license

20KB
389 lines

tsc2046

GitHub Actions Workflow Status Crates.io Version docs.rs

TSC2046 SPI 4-Wire Touch Screen Controller driver

Overview

This crate is a platform-agnostic Rust driver for the TSC2046 4-wire touch screen controller. This crate provides a high-level interface to interact with the TSC2046 chip, allowing you to read the X and Y coordinates of a touch, as well as calculate the pressure applied on the touch screen.

The driver is designed to work with any hardware abstraction layer (HAL) that implements the embedded-hal v1.0.0 traits and works in no_std environments.

Features

  • Read X and Y coordinates of touch
  • Configure the interrupt output of the chip
  • Touch detection
  • Touch pressure calculation

Installation

To use this crate in your Rust project, add the following line to your Cargo.toml file:

[dependencies]
tsc2046 = "0.1.0"

Dependencies

~175KB