From 2cdee4a24373da79cd54cdbed701427b868053b9 Mon Sep 17 00:00:00 2001 From: sommersoft Date: Sun, 4 Mar 2018 21:57:19 -0600 Subject: [PATCH] updated info docstring --- adafruit_avrprog.py | 25 ++++++++++++++++++------- 1 file changed, 18 insertions(+), 7 deletions(-) diff --git a/adafruit_avrprog.py b/adafruit_avrprog.py index d471ce5..3416923 100644 --- a/adafruit_avrprog.py +++ b/adafruit_avrprog.py @@ -20,12 +20,28 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. """ -`adafruit_AVRprog` +`adafruit_avrprog` ==================================================== -TODO(description) +Program your favorite AVR chips directly from CircuitPython with this +handy helper class that will let you make stand-alone programmers right +from your REPL * Author(s): ladyada + +Implementation Notes +-------------------- + +**Hardware:** + +* See Learn Guide for supported hardware: `Stand-alone programming AVRs using CircuitPython + `_ + +**Software and Dependencies:** + +* Adafruit CircuitPython firmware for the ESP8622 and M0-based boards: + https://github.com/adafruit/circuitpython/releases + """ # imports @@ -39,11 +55,6 @@ _SLOW_CLOCK = 100000 _FAST_CLOCK = 1000000 class AVRprog: - """ - Program your favorite AVR chips directly from CircuitPython with this - handy helper class that will let you make stand-alone programmers right - from your REPL - """ _spi = None _rst = None