Contribute Media
A thank you to everyone who makes this possible: Read More

MicroPython

Translations: en en en

Description

Micropython is a minimal implementation of Python 3 on embedded processors like ARM, x86. It allows developers to quickly and effectively write code directly for hardware without the need for compiling.

The advantage of an interpreted language is mainly in removing the compilation time. Errors appear when executing the program, the response is immediate. The disadvantages include an increased demand for memory and unscheduled pause due to the garbage collector. I will introduce development platforms running interpreted languages, their advantages and disadvantages.

The main part of the lecture will be devoted to basic hardware development using examples such as switches, LEDs, potentiometers and interruptions.

Details

Improve this page