@@ -10,7 +10,7 @@ CircuitPython
10
10
`Branding <#branding >`__ \| `Differences from Micropython <#differences-from-micropython >`__ \|
11
11
`Project Structure <#project-structure >`__
12
12
13
- **CircuitPython ** is an *beginner friendly *, open source version of Python for tiny, inexpensive
13
+ **CircuitPython ** is a *beginner friendly *, open source version of Python for tiny, inexpensive
14
14
computers called microcontrollers. Microcontrollers are the brains of many electronics including a
15
15
wide variety of development boards used to build hobby projects and prototypes. CircuitPython in
16
16
electronics is one of the best ways to learn to code because it connects code to reality. Simply
@@ -22,9 +22,10 @@ CircuitPython features unified Python core APIs and a growing list of 150+ devic
22
22
drivers that work with it. These libraries also work on single board computers with regular
23
23
Python via the `Adafruit Blinka Library <https://github.com/adafruit/Adafruit_Blinka >`_.
24
24
25
- CircuitPython is a beginner focused derivative of `MicroPython <https://micropython.org >`_.
26
- CircuitPython development is sponsored by `Adafruit <https://adafruit.com >`_ and is available on
27
- their educational development boards. Please support both MicroPython and Adafruit.
25
+ CircuitPython is based on `MicroPython <https://micropython.org >`_. See
26
+ `below <#differences-from-micropython >`_ for differences. CircuitPython development is sponsored by
27
+ `Adafruit <https://adafruit.com >`_ and is available on their educational development boards. Please
28
+ support both MicroPython and Adafruit.
28
29
29
30
Get CircuitPython
30
31
------------------
@@ -126,7 +127,7 @@ Behavior
126
127
after the crash. A reset (the button) is needed after its fixed to
127
128
get back into normal mode.
128
129
- RGB status LED indicating CircuitPython state, and errors through a sequence of colored flashes.
129
- - Re-runs ``code.y `` or other main file after file system writes over USB mass storage. (Disable with
130
+ - Re-runs ``code.py `` or other main file after file system writes over USB mass storage. (Disable with
130
131
``samd.disable_autoreload() ``)
131
132
- Entering the REPL after the main code is finished requires a key press which enters the REPL and
132
133
disables autoreload.
0 commit comments