File tree Expand file tree Collapse file tree 2 files changed +1
-35
lines changed Expand file tree Collapse file tree 2 files changed +1
-35
lines changed Original file line number Diff line number Diff line change @@ -27,41 +27,6 @@ Please ensure all dependencies are available on the CircuitPython filesystem.
27
27
This is easily achieved by downloading
28
28
`the Adafruit library and driver bundle <https://circuitpython.org/libraries >`_.
29
29
30
- Installing from PyPI
31
- =====================
32
- .. note :: This library is not available on PyPI yet. Install documentation is included
33
- as a standard element. Stay tuned for PyPI availability!
34
-
35
- .. todo :: Remove the above note if PyPI version is/will be available at time of release.
36
- If the library is not planned for PyPI, remove the entire 'Installing from PyPI' section.
37
-
38
- On supported GNU/Linux systems like the Raspberry Pi, you can install the driver locally `from
39
- PyPI <https://pypi.org/project/adafruit-circuitpython-gizmo/> `_. To install for current user:
40
-
41
- .. code-block :: shell
42
-
43
- pip3 install adafruit-circuitpython-gizmo
44
-
45
- To install system-wide (this may be required in some cases):
46
-
47
- .. code-block :: shell
48
-
49
- sudo pip3 install adafruit-circuitpython-gizmo
50
-
51
- To install in a virtual environment in your current project:
52
-
53
- .. code-block :: shell
54
-
55
- mkdir project-name && cd project-name
56
- python3 -m venv .env
57
- source .env/bin/activate
58
- pip3 install adafruit-circuitpython-gizmo
59
-
60
- Usage Example
61
- =============
62
-
63
- .. todo :: Add a quick, simple example. It and other examples should live in the examples folder and be included in docs/examples.rst.
64
-
65
30
Contributing
66
31
============
67
32
Original file line number Diff line number Diff line change 36
36
import displayio
37
37
from adafruit_st7789 import ST7789
38
38
39
+ # pylint: disable=invalid-name
39
40
class TFT_Gizmo (ST7789 ):
40
41
"""Class representing a TFT Gizmo."""
41
42
You can’t perform that action at this time.
0 commit comments