This repository has been archived by the owner on Dec 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Set language association and adhere to docstring convention for templ…
…ate file (#43) * Set language association and adhere to docstring convention for template file * Put docstring summary on first line Co-Authored-By: Brett Cannon <54418+brettcannon@users.noreply.github.com>
- Loading branch information
1 parent
af1d630
commit 31cf194
Showing
2 changed files
with
8 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
''' | ||
Save your file as "code.py" or "main.py" to run on the actual device | ||
"""Save your file as "code.py" or "main.py" to run on the actual device. | ||
Getting started with CPX and CircuitPython intro on: https://learn.adafruit.com/circuitpython-made-easy-on-circuit-playground-express/circuit-playground-express-library | ||
Getting started with CPX and CircuitPython intro on: | ||
https://learn.adafruit.com/circuitpython-made-easy-on-circuit-playground-express/circuit-playground-express-library | ||
Find example code for CPX on: https://github.com/adafruit/Adafruit_CircuitPython_CircuitPlayground/tree/master/examples | ||
''' | ||
Find example code for CPX on: | ||
https://github.com/adafruit/Adafruit_CircuitPython_CircuitPlayground/tree/master/examples | ||
""" | ||
|
||
# import CPX library | ||
from adafruit_circuitplayground.express import cpx | ||
|
||
while True: | ||
# start your code here | ||
pass | ||
pass |