File tree Expand file tree Collapse file tree 4 files changed +8
-14
lines changed
cedargrove_touchcalibrator Expand file tree Collapse file tree 4 files changed +8
-14
lines changed Original file line number Diff line number Diff line change @@ -91,15 +91,9 @@ Or the following command to update an existing version:
9191
9292 circup update
9393
94- Usage Example
95- =============
96-
97- .. todo :: Add a quick, simple example. It and other examples should live in the
98- examples folder and be included in docs/examples.rst.
9994
10095 Documentation
10196=============
102- API documentation for this library can be found on `Read the Docs <https://circuitpython-touchcalibrator.readthedocs.io/ >`_.
10397
10498For information on building library documentation, please check out
10599`this guide <https://learn.adafruit.com/creating-and-sharing-a-circuitpython-library/sharing-our-docs-on-readthedocs#sphinx-5-1 >`_.
Original file line number Diff line number Diff line change 4646import adafruit_touchscreen
4747
4848__version__ = "0.0.0+auto.0"
49- __repo__ = "https://github.com/CedarGroveStudios/Cedargrove_CircuitPython_TouchCalibrator.git"
49+ __repo__ = (
50+ "https://github.com/CedarGroveStudios/Cedargrove_CircuitPython_TouchCalibrator.git"
51+ )
5052
5153
5254# Operational parameters:
Original file line number Diff line number Diff line change 5454import adafruit_stmpe610
5555
5656__version__ = "0.0.0+auto.0"
57- __repo__ = "https://github.com/CedarGroveStudios/Cedargrove_CircuitPython_TouchCalibrator.git"
57+ __repo__ = (
58+ "https://github.com/CedarGroveStudios/Cedargrove_CircuitPython_TouchCalibrator.git"
59+ )
5860
5961
6062# Select display type; ILI9341 for the 2.4" 320x240 TFT FeatherWing (#3315)
6163# or "HX8357" for the 3.5" 480x320 TFT FeatherWing (#3651)
6264DISPLAY_TYPE = "ILI9341"
6365
64- if DISPLAY_TYPE = "ILI9341" :
66+ if DISPLAY_TYPE == "ILI9341" :
6567 from adafruit_ili9341 import ILI9341 # 2.4" 320x240 TFT FeatherWing
66- elif DISPLAY_TYPE = "HX8357" :
68+ elif DISPLAY_TYPE == "HX8357" :
6769 from adafruit_hx8357 import HX8357 # 3.5" 480x320 TFT FeatherWing
6870
6971# Operational parameters:
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments