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

# Problem In repo https://github.com/hmaerki/experiment_micropython_mip, I create a mip-package which may be install as follows: ```python import mip mip.install("dryer2023", version="main", index="https://hmaerki.github.io/experiment_micropython_mip") ``` This is the `package.json` file: ```python { "version":...

I'm trying to send config info to Home Assistant from a Pico W with the following code: ``` import time import config from network import WLAN,STA_IF import ubinascii # import...

I'm using the following image: `MicroPython v1.20.0-206-g33b403dfb-kaki5 on 2023-07-11; ESP32 CAMERA w/SSL (KAKI5) with ESP32` on an AiThinker ESP32-CAM. When listening for incoming UDP packets, if the packet has a...

[Quoth the documentation](https://docs.micropython.org/en/latest/library/machine.SDCard.html#machine.SDCard), ```python3 class machine.SDCard(slot=1, width=1, cd=None, wp=None, sck=None, miso=None, mosi=None, cs=None, freq=20000000): ``` The code: https://github.com/micropython/micropython-lib/blob/46748d2817d791212808337c0c708f131ec5c353/micropython/drivers/storage/sdcard/sdcard.py#L41-L42 Is this fallout from moving from `machine.SDCard` to `sdcard.SDCard`?

Not sure if this is the best place to do this but I thought I'd take a stab at this. The default build includes a NeoPixel library which is great,...

I currently have a problem that if the wifi is not great a request will hang and hold up the whole script. Is there a way to add a timeout...

Hi there, I've been trying really hard to sort out this error with wiring and looking at other forums but just cannot work it out. This is the error message...

Hello, In the README.md: https://github.com/micropython/micropython-lib/tree/master/micropython/bluetooth/aioble it is stated that the notify method take one optional argument: ```temp_char.notify(b'optional data')``` but if I call it without any argument I get: ```TypeError: function...