Skip to content

Commit 2cdee4a

Browse files
committed
updated info docstring
1 parent a7ae977 commit 2cdee4a

File tree

1 file changed

+18
-7
lines changed

1 file changed

+18
-7
lines changed

adafruit_avrprog.py

Lines changed: 18 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,28 @@
2020
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2121
# THE SOFTWARE.
2222
"""
23-
`adafruit_AVRprog`
23+
`adafruit_avrprog`
2424
====================================================
2525
26-
TODO(description)
26+
Program your favorite AVR chips directly from CircuitPython with this
27+
handy helper class that will let you make stand-alone programmers right
28+
from your REPL
2729
2830
* Author(s): ladyada
31+
32+
Implementation Notes
33+
--------------------
34+
35+
**Hardware:**
36+
37+
* See Learn Guide for supported hardware: `Stand-alone programming AVRs using CircuitPython
38+
<https://learn.adafruit.com/stand-alone-programming-avrs-using-circuitpython/overview>`_
39+
40+
**Software and Dependencies:**
41+
42+
* Adafruit CircuitPython firmware for the ESP8622 and M0-based boards:
43+
https://github.com/adafruit/circuitpython/releases
44+
2945
"""
3046

3147
# imports
@@ -39,11 +55,6 @@
3955
_FAST_CLOCK = 1000000
4056

4157
class AVRprog:
42-
"""
43-
Program your favorite AVR chips directly from CircuitPython with this
44-
handy helper class that will let you make stand-alone programmers right
45-
from your REPL
46-
"""
4758
_spi = None
4859
_rst = None
4960

0 commit comments

Comments
 (0)