Introduction

Documentation Status Discord Build Status

Adafruit CircuitPython module for the STMPE610 Resistive Touch Screen Controller

Dependencies

This driver depends on:

Please ensure all dependencies are available on the CircuitPython filesystem. This is easily achieved by downloading the Adafruit library and driver bundle.

Contributing

Contributions are welcome! Please read our Code of Conduct before contributing to help this project stay welcoming.

Building locally

Zip release files

To build this library locally you’ll need to install the circuitpython-build-tools package.

python3 -m venv .env
source .env/bin/activate
pip install circuitpython-build-tools

Once installed, make sure you are in the virtual environment:

source .env/bin/activate

Then run the build:

circuitpython-build-bundles --filename_prefix adafruit-circuitpython-stmpe610 --library_location .

Sphinx documentation

Sphinx is used to build the documentation based on rST files and comments in the code. First, install dependencies (feel free to reuse the virtual environment from above):

python3 -m venv .env
source .env/bin/activate
pip install Sphinx sphinx-rtd-theme

Now, once you have the virtual environment activated:

cd docs
sphinx-build -E -W -b html . _build/html

This will output the documentation to docs/_build/html. Open the index.html in your browser to view them. It will also (due to -W) error out on any warning like Travis will. This is a good way to locally verify it will pass.

Table of Contents

Simple test

Ensure your device works with this simple test.

examples/stmpe610_simpletest.py
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
import busio
import board
import digitalio
from adafruit_stmpe610 import Adafruit_STMPE610_SPI

spi = busio.SPI(board.SCK, board.MOSI, board.MISO)
cs = digitalio.DigitalInOut(board.D6)
st = Adafruit_STMPE610_SPI(spi, cs)

print("Go Ahead - Touch the Screen - Make My Day!")
while True:
    if not st.buffer_empty:
        print(st.read_data())

adafruit_stmpe610

This is a CircuitPython Driver for the STMPE610 Resistive Touch sensor

  • Author(s): Jerry Needell
class adafruit_stmpe610.Adafruit_STMPE610

A driver for the STMPE610 Resistive Touch sensor.

buffer_empty

Buffer empty status

buffer_size

The amount of touch data in the buffer

get_point

Read one touch from the buffer

get_version

Read the version number from the sensosr

read_data()

Request next stored reading - return tuple containing (x,y,pressure)

touched

Report if any touches have been detectd

touches

Returns a list of touchpoint dicts, with ‘x’ and ‘y’ containing the touch coordinates, and ‘pressure’

class adafruit_stmpe610.Adafruit_STMPE610_I2C(i2c, address=65)

I2C driver for the STMPE610 Resistive Touch sensor.

class adafruit_stmpe610.Adafruit_STMPE610_SPI(spi, cs, baudrate=1000000)

SPI driver for the STMPE610 Resistive Touch sensor.

Indices and tables