|
3 | 3 | [](https://travis-ci.org/adafruit/circuitpython) [](http://circuitpython.readthedocs.io/) [](https://gitter.im/adafruit/circuitpython?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
|
4 | 4 |
|
5 | 5 | This is an open source derivative of [MicroPython](http://www.micropython.org)
|
6 |
| -for use on educational development boards designed and sold by [Adafruit](https://www.adafruit.com) |
7 |
| -including the [Arduino Zero](https://www.arduino.cc/en/Main/ArduinoBoardZero), [Adafruit Feather M0 Basic](https://www.adafruit.com/products/2772), [Adafruit Feather HUZZAH](https://www.adafruit.com/products/2821) and |
8 |
| -[Adafruit Feather M0 Bluefruit LE](https://www.adafruit.com/products/2995). |
| 6 | +for use on educational development boards designed and sold by [Adafruit](https://www.adafruit.com). |
9 | 7 |
|
10 | 8 | As a MicroPython derivative, this implements Python 3.x on microcontrollers such
|
11 | 9 | as the SAMD21 and ESP8266.
|
12 | 10 |
|
13 | 11 | ## Project Status
|
14 | 12 | This project is in beta. Most APIs should be stable going forward.
|
15 | 13 |
|
| 14 | +### Supported boards |
| 15 | + |
| 16 | +#### Designed for CircuitPython |
| 17 | +* [Adafruit Feather M0 Express](https://www.adafruit.com/product/3403) |
| 18 | + |
| 19 | +#### Other |
| 20 | +* [Adafruit Feather HUZZAH](https://www.adafruit.com/products/2821) |
| 21 | +* [Adafruit Feather M0 Basic](https://www.adafruit.com/products/2772) |
| 22 | +* [Adafruit Feather M0 Bluefruit LE](https://www.adafruit.com/products/2995) (uses M0 Basic binaries) |
| 23 | +* [Adafruit Feather M0 Adalogger](https://www.adafruit.com/product/2796) (MicroSD card not supported yet.) |
| 24 | +* [Arduino Zero](https://www.arduino.cc/en/Main/ArduinoBoardZero) |
| 25 | + |
| 26 | +## Download |
| 27 | + |
| 28 | +Official binaries are available through the [latest GitHub releases](https://github.com/adafruit/circuitpython/releases). |
| 29 | +Continuous (one per commit) builds are available [here](https://adafruit-circuit-python.s3.amazonaws.com/index.html?prefix=bin) |
| 30 | +which includes experimental hardware support. |
| 31 | + |
16 | 32 | ## Documentation
|
17 | 33 |
|
18 | 34 | Guides and videos are available through the [Adafruit Learning System](https://learn.adafruit.com/) under the [CircuitPython category](https://learn.adafruit.com/category/circuitpython) and [MicroPython category](https://learn.adafruit.com/category/micropython). An API reference is also available on [Read the Docs](http://circuitpython.readthedocs.io/en/latest/?).
|
@@ -60,6 +76,7 @@ The core code of MicroPython is shared amongst ports including CircuitPython:
|
60 | 76 | - `py` Core Python implementation, including compiler, runtime, and
|
61 | 77 | core library.
|
62 | 78 | - `shared-bindings` Shared definition of Python modules, their docs and backing C APIs. Ports must implement the C API to support the corresponding module.
|
| 79 | +- `shared-module` Shared implementation of Python modules that may be based on `common-hal`. |
63 | 80 | - `tests` Test framework and test scripts.
|
64 | 81 | - `tools` Various tools, including the pyboard.py module.
|
65 | 82 |
|
|
0 commit comments