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