Skip to content

Commit ccc2674

Browse files
initial repo load
1 parent 033badb commit ccc2674

File tree

4 files changed

+8
-14
lines changed

4 files changed

+8
-14
lines changed

README.rst

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff 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

10498
For 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>`_.

cedargrove_touchcalibrator/built_in.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,9 @@
4646
import 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:

cedargrove_touchcalibrator/featherwing.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,16 +54,18 @@
5454
import 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)
6264
DISPLAY_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:

examples/touchcalibrator_simpletest.py

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)