This page (revision-37) was last changed on 2025-07-30 13:24 by Murray Altheim

This page was created on 2025-07-23 02:43 by Murray Altheim

Only authorized users are allowed to rename pages.

Only authorized users are allowed to delete pages.

Page revision history

Version Date Modified Size Author Changes ... Change note
37 2025-07-30 13:24 1 KB Murray Altheim to previous
36 2025-07-30 13:23 1 KB Murray Altheim to previous | to last
35 2025-07-30 13:22 1 KB Murray Altheim to previous | to last
34 2025-07-30 12:45 1 KB Murray Altheim to previous | to last
33 2025-07-30 12:44 1 KB Murray Altheim to previous | to last
32 2025-07-30 12:42 1 KB Murray Altheim to previous | to last
31 2025-07-30 12:16 1 KB Murray Altheim to previous | to last
30 2025-07-30 12:16 1 KB Murray Altheim to previous | to last
29 2025-07-30 12:12 1 KB Murray Altheim to previous | to last
28 2025-07-30 12:10 1 KB Murray Altheim to previous | to last
27 2025-07-30 11:51 1 KB Murray Altheim to previous | to last
26 2025-07-30 10:07 1 KB Murray Altheim to previous | to last
25 2025-07-30 06:40 1 KB Murray Altheim to previous | to last
24 2025-07-30 06:15 760 bytes Murray Altheim to previous | to last
23 2025-07-30 05:58 674 bytes Murray Altheim to previous | to last
22 2025-07-30 05:58 664 bytes Murray Altheim to previous | to last
21 2025-07-30 05:57 644 bytes Murray Altheim to previous | to last

Page References

Incoming links Outgoing links

Version management

Difference between version and

At line 1 changed one line
This is the home page for a MicroPython Tutorial.
This is the home page for a __MicroPython Tutorial__.
At line 11 changed 3 lines
* [MicroPython Tutorial Exercise 2|MicroPythonTutorialExercise02]: functions
* [MicroPython Tutorial Exercise 3|MicroPythonTutorialExercise03]: classes
* [MicroPython Tutorial Exercise 4|MicroPythonTutorialExercise04]: using classes
* [MicroPython Tutorial Exercise 2|MicroPythonTutorialExercise02]: blocks
* [MicroPython Tutorial Exercise 3|MicroPythonTutorialExercise03]: functions
* [MicroPython Tutorial Exercise 4|MicroPythonTutorialExercise04]: classes
* [MicroPython Tutorial Exercise 5|MicroPythonTutorialExercise05]: using classes
At line 15 changed one line
!! Starting Point
Additional exercises:
At line 17 changed one line
We begin with a {{main.py}} file (defining a ''module'' called "main") containing just a single comment line:
* [The REPL|MicroPythonTutorialTheREPL]
* [Objects and Names|MicroPythonTutorialObjectsAndNames]
* [Scope|MicroPythonTutorialScope].
* [Exception Handling|MicroPythonTutorialExceptionHandling].
* [String Formatting|StringFormatting].
At line 19 changed 5 lines
! main.py
%%python {{{
# do something intelligent here
}}}
%%
!! Documentation
The complete documentation for Python and MicroPython (as used on microcontrollers) is available here:
* [Python documentation|https://docs.python.org/3/]
** [Beginner's Guide|https://wiki.python.org/moin/BeginnersGuide]
* [MicroPython documentation|https://docs.micropython.org/en/latest/]
** [Language Reference|https://docs.micropython.org/en/latest/reference/index.html]
** [Libraries Reference|https://docs.micropython.org/en/latest/library/index.html]
** [Glossary of MicroPython terms|https://docs.micropython.org/en/latest/reference/glossary.html]
* There is also a complete page on this wiki about [MicroPython]
----
__Next:__ [MicroPython Tutorial Exercise 1|MicroPythonTutorialExercise01]: main.py