Metadata-Version: 2.4
Name: circuitpython-qwstpad
Version: 0.1.0
Summary: Add your description here
Author: Michael Twomey
Author-email: Michael Twomey <mick@twomeylee.name>
License-Expression: MIT
License-File: LICENSE
Requires-Dist: community-circuitpython-tca9555>=0.2.2
Requires-Python: >=3.6
Project-URL: Homepage, https://codeberg.org/micktwomey/circuitpython-qwstpad
Project-URL: Repository, https://codeberg.org/micktwomey/circuitpython-qwstpad
Description-Content-Type: text/markdown

# CirctuiPython Library for the Pimoroni Qw/ST Pad

This is a CircuitPython library for the [Pimoroni Qw/ST Pad](https://shop.pimoroni.com/products/qwst-pad?variant=53514400596347).

# Installation

```sh
# Using uv
uv add circuitpython-qwstpad

# Using pip
pip install circuitpython-qwstpad

# Using circup
circup install circuitpython-qwstpad
```

# Example Use

```python
import board

from circuitpython_qwstpad import qwstpad

i2c = board.I2C()
pad = qwstpad.get_qwstpad(i2c)
pad.led_1 = True

print(f"Button A pressed? {pad.button_a}")
```
