├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── Adafruit_ILI9341 ├── ILI9341.py └── __init__.py ├── LICENSE ├── README.md ├── examples ├── cat.jpg ├── image.py ├── image_timed.py └── shapes.py ├── ez_setup.py └── setup.py /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_Python_ILI9341/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_Python_ILI9341/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | dist 3 | *.egg-info 4 | *.pyc 5 | setuptools-* 6 | -------------------------------------------------------------------------------- /Adafruit_ILI9341/ILI9341.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_Python_ILI9341/HEAD/Adafruit_ILI9341/ILI9341.py -------------------------------------------------------------------------------- /Adafruit_ILI9341/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_Python_ILI9341/HEAD/Adafruit_ILI9341/__init__.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_Python_ILI9341/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_Python_ILI9341/HEAD/README.md -------------------------------------------------------------------------------- /examples/cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_Python_ILI9341/HEAD/examples/cat.jpg -------------------------------------------------------------------------------- /examples/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_Python_ILI9341/HEAD/examples/image.py -------------------------------------------------------------------------------- /examples/image_timed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_Python_ILI9341/HEAD/examples/image_timed.py -------------------------------------------------------------------------------- /examples/shapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_Python_ILI9341/HEAD/examples/shapes.py -------------------------------------------------------------------------------- /ez_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_Python_ILI9341/HEAD/ez_setup.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_Python_ILI9341/HEAD/setup.py --------------------------------------------------------------------------------