Metadata-Version: 2.4
Name: JoyIT_st7789vw
Version: 1.0.1
Summary: Library to use the SBC-LCD01 with the Raspberry Pi
Home-page: https://github.com/joy-it/JoyIT_st7789vw
Author: Joy-IT
Author-email: Joy-IT <service@joy-it.net>
Project-URL: Homepage, https://github.com/joy-it/JoyIT_st7789vw
Project-URL: Issues, https://github.com/joy-it/JoyIT_st7789vw/issues
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: gpiozero
Requires-Dist: spidev
Requires-Dist: numpy
Requires-Dist: Pillow
Dynamic: author
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

# JoyIT_st7789vw
Library to use the SBC-LCD01 with the Raspberry Pi

## Installation
You can install this library from PyPI.
To install it for the current user on your Raspberry Pi, use the following command:
```
pip install JoyIT_st7789vw
```

## Example
You need to clone this repository on your Raspberry Pi to be able to execute the example code.
```
git clone https://github.com/joy-it/JoyIT_st7789vw
```
Afterward, you need to move into the directory and activate the virtual environment with the following commands.
```
cd JoyIT_st7789vw
python -m venv --system-site-packages env
source env/bin/activate
```
Then you can execute the example with the following command.
```
python3 examples/example.py
```
