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

Core Python libraries ported to MicroPython

Results 339 micropython-lib issues
Sort by recently updated
recently updated
newest added
trafficstars

This is the first step towards updating MicroPython's package management and deployment system in a way that combines freezing, on-device-install and host-based-install. This uses the new manifest.py features: `require()`, `package()`,...

Now json.dumps(str) turn Chinese character Json object with UTF8 . But send requests need Unicode , Could add ensure_acsii parameters ? or Any other solution?

1. Use the characteristic end handle (available in next MicroPython release) when querying descriptors. Fixes #485 2. Fix server-side custom descriptor registration. Fixes #442 3. Fix descriptor client events. 4....

I have written a tiny version of pyjwt, which I plan to use to handle web sessions in my Microdot library. Would there be any interest in adding it to...

When I tried to discover the descriptors, I found the return descriptors are incorrect, I am based on the master branch. Attached is a modified "temp_client.py" file, I tried to...

When a device advertises multiple service UUIDs, it seems only the first one gets decoded. I'm doing something like: ``` async with aioble.scan(5000, interval_us=30000, window_us=30000, active=True) as scanner: async for...

Still relatively early, but starting to be useful for things. Eventual goal is to have enough support for MicroPython to be a LoRaWAN Class A device with a fully async...

Since no unsubscribe feature, in simple or robust implementation? What happens to the subscriptions that are orphaned? Is the broker left with subscriptions that are bogus? Does not seem like...

Basic functionality (notably, all of the `uuidX()` methods) of most of the [uuid](https://docs.python.org/3/library/uuid.html) module appears to work, or at least generate reasonable-looking results. This started as a copy of the...

I'm trying to send data to a spreadsheet hosted on Google using the post function on urequests.py my code: ``` request_data = ujson.dumps({ "parameter": { "Beer": "Test", "Temp": 65, "SG":1.050,...