> For the complete documentation index, see [llms.txt](https://dev.tesa.or.th/tesa-developer/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://dev.tesa.or.th/tesa-developer/tesa-university-program/rt-thread-iot-os/university-program/edge-ai-workshop/micropython-programming.md).

# MicroPython Programming

<figure><img src="/files/jQvEVeidnhCIVBr1x5xr" alt=""><figcaption></figcaption></figure>

## MicroPython

MicroPython provides built-in modules that mirror the functionality of the Python standard library (e.g. os, time), as well as MicroPython-specific modules (e.g. bluetooth, machine). Most Python standard library modules implement a subset of the functionality of the equivalent Python module, and in a few cases provide some MicroPython-specific extensions (e.g. array, os). Due to resource constraints or other limitations, some ports or firmware versions may not include all the functionality documented here.

| Libraries                            | Libraries                       |
| ------------------------------------ | ------------------------------- |
| pyb - functions related to the board | cpufreq - CPU Frequency Control |
| sensor - camera sensor               | buzzer - buzzer driver          |
| image - machine vision               | rpc - rpc library               |
| ml - Machine Learning                | rtsp - rtsp library             |
| audio - Audio Module                 | omv - OpenMV Cam Information    |
| display - display driver             | mjpeg - mjpeg recording         |
| imu - imu sensor                     |                                 |


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://dev.tesa.or.th/tesa-developer/tesa-university-program/rt-thread-iot-os/university-program/edge-ai-workshop/micropython-programming.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
