Write MicroPython as one word, per latest guidelines
parent
0878bd4027
commit
784cbc084f
14
Home.md
14
Home.md
|
@ -1,13 +1,13 @@
|
||||||
Welcome to the micropython dev wiki!
|
Welcome to the micropython dev wiki!
|
||||||
This is the [Micro Python](http://micropython.org/) project, which puts an implementation of Python 3.x on a microcontroller or embedded system. The project also includes a small [microcontroller board](https://github.com/micropython/pyboard) based around the STM32F405RG chip.
|
This is the [MicroPython](http://micropython.org/) project, which puts an implementation of Python 3.x on a microcontroller or embedded system. The project also includes a small [microcontroller board](https://github.com/micropython/pyboard) based around the STM32F405RG chip.
|
||||||
|
|
||||||
This wiki is to support development of the Micro Python core code and the various ports to new hardware.
|
This wiki is to support development of the MicroPython core code and the various ports to new hardware.
|
||||||
The users guide on how to use Micro Python, and all user oriented library and module information, is on the [main Micro Python site](http://micropython.org/).
|
The users guide on how to use MicroPython, and all user oriented library and module information, is on the [main Micro Python site](http://micropython.org/).
|
||||||
|
|
||||||
![micropython-logo](https://avatars1.githubusercontent.com/u/6298560?s=140 '"micro" the project mascot')
|
![micropython-logo](https://avatars1.githubusercontent.com/u/6298560?s=140 '"micro" the project mascot')
|
||||||
|
|
||||||
###What is Micro Python
|
###What is MicroPython
|
||||||
Micro Python is Python interpreter (with partial native code emission feature). It provides subset of Python 3.4 features, implemented for embedded processors and constrained systems.
|
MicroPython is Python interpreter (with partial native code emission feature). It provides subset of Python 3.4 features, implemented for embedded processors and constrained systems.
|
||||||
|
|
||||||
###Boards
|
###Boards
|
||||||
The Kickstarter board
|
The Kickstarter board
|
||||||
|
@ -16,7 +16,7 @@ The Kickstarter board
|
||||||
|
|
||||||
A list of other boards and their ports is here: **[[Other Boards|Boards-Summary]]**
|
A list of other boards and their ports is here: **[[Other Boards|Boards-Summary]]**
|
||||||
|
|
||||||
### I want to try using micropython now!
|
### I want to try using MicroPython now!
|
||||||
If you have a machine that runs some flavor of Unix, see the [[Getting-Started]] instructions on how to obtain the binary to run MicroPython and start developing. MicroPython can also built on MacOSX and Windows.
|
If you have a machine that runs some flavor of Unix, see the [[Getting-Started]] instructions on how to obtain the binary to run MicroPython and start developing. MicroPython can also built on MacOSX and Windows.
|
||||||
|
|
||||||
### Performance
|
### Performance
|
||||||
|
@ -47,4 +47,4 @@ This module allows access to the internal peripherals of the microcontroller chi
|
||||||
### Current Limitations
|
### Current Limitations
|
||||||
* The entire set of standard python libraries is **not** supported. If a module is missing it will be due to the inapplicability of that module for use in an embedded controller. High memory consumption (e.g. sqlite3) or a lack of a certain required hardware feature (e.g. multiprocessing) are reasons that some modules can not be implemented for some microcontrollers.
|
* The entire set of standard python libraries is **not** supported. If a module is missing it will be due to the inapplicability of that module for use in an embedded controller. High memory consumption (e.g. sqlite3) or a lack of a certain required hardware feature (e.g. multiprocessing) are reasons that some modules can not be implemented for some microcontrollers.
|
||||||
The full list list of standard python libraries can be found here: [Python 3.4 standard lib](http://docs.python.org/3/library/).
|
The full list list of standard python libraries can be found here: [Python 3.4 standard lib](http://docs.python.org/3/library/).
|
||||||
* There are differences between CPython3 (considered to be a reference implementation of the Python3 language) and MicroPython. Documented [[here|Differences]].
|
* There are differences between CPython3 (considered to be a reference implementation of the Python3 language) and MicroPython. Documented [[here|Differences]].
|
||||||
|
|
Loading…
Reference in New Issue