micropython-lib
micropython-lib copied to clipboard
Core Python libraries ported to MicroPython
Hello! I am running MicroPython v1.22.1 on 2024-01-05; ESP32C3 module with ESP32C3. I have built a web server with micropython before and have used the aioble module as well in...
I am using urequest.get in Micropython running on a Raspberry Pi PICO W in a loop containing the following to access Ecobee's server for my furnace status: ``` url =...
UTF-8 support for request data was added, it will be able to handle special characters correctly.
I have run a program before on my RPI Pico Zero W with the machine module in PyCharm but now I cannot set it up again. When running the program,...
When multiple UUIDs of the same size are advertised, they should all be listed in a single LTV. Supplement to the Bluetooth Core Specification, Part A, §1.1.1: "A packet or...
This module has been heavily reworked. I went through the logic, and compared it to the SDCard standard, and found numerous ways it could be made faster, and work more...
This is a reauthor of [#561 ](https://github.com/micropython/micropython-lib/pull/561) The datetime module doesn't support naive datetimes and throws an unimplemented error when calling some of the methods such as datetime.now(). Rather than...
I discuss this [here](https://github.com/orgs/micropython/discussions/13239#top). The zombie processes make it hard to use if it is called continuously. I reverted to piping to file and reading the output.
Hi, i am getting the following error when I try to run a iperf3 client on my Raspberry Pi Pico W: ` import iperf3 client = iperf3.Client() Traceback (most recent...
Hello, In wait_msg, the PINGRESP message is ignored: ```python if res == b"\xd0": # PINGRESP sz = self.sock.read(1)[0] assert sz == 0 return None ``` Shouldn't this return some information...