micropython-lib icon indicating copy to clipboard operation
micropython-lib copied to clipboard

Core Python libraries ported to MicroPython

Results 354 micropython-lib issues
Sort by recently updated
recently updated
newest added

Aiming to add minimalistic logging capabilities soon within starting phase of a micropythion program, one would call: ``` #minimalistic logging.basicConfig(stream=stream.sys level=logging.DEBUG) logger = logging.getLogger('thelog') ``` Aiming to get a fancy...

The GET request in the request library cannot add parameters, and the url constructed to www.xxx.com?token=xxx cannot take effect (this can be recognized normally in the requests library)

needs-info

I have been importing some stdlibs by hand and most are working fine (collections/datetime/etc). However after a lot of attempts I can't get code such as the following to work:...

needs-info

Repository address:https://github.com/leezisheng/freakstudio-micropython-libraries/tree/main/serial_servo It has also been published on PyPi:https://pypi.org/project/serial-servo/

Pi Pico W 2 running: 1.25.0-preview Do something like this: ``` class WC(): def __init__(self): self._wlan: network.WLAN = network.WLAN(network.STA_IF) # WiFi client def connect(self, ssid: str, pwd: str) -> bool:...

See [this discussion](https://github.com/peterhinch/micropython-mqtt/issues/164) for background, also MQTT spec V3.1.1 section 2.2.3. This may be academic as its main impact is if the `topic` field is long. This is to record...

While using `os.popen()` from unix-ffi libraries on FreeBSD 14.1-RELEASE-p5 amd64, I encountered this error: ```console ... File "os/__init__.py", line 32, in File "ffilib.py", line 43, in libc File "ffilib.py", line...

Provide pymitter event susbscription and emitting functionality.

Im encountering an issue, while transmitting large data (eg. files, ~50kb) over MQTT. The first transmission works flawlessly, but then the ESP has problems to allocate enough heap for further...

Add single-file module for the Microchip MCP9808 precision temperature sensor. The module provides a class for reading the emperature and for configuring the sensor. It has type/value checking for some...