Search found 3 matches

by mkomon
Fri Feb 11, 2022 5:43 pm
Forum: General Discussion and Questions
Topic: subclassing io.StringIO gives me an unhandled exception
Replies: 3
Views: 1150

Re: subclassing io.StringIO gives me an unhandled exception

Thank you Peter. I was not aware of this limitation.
by mkomon
Fri Feb 11, 2022 1:24 pm
Forum: General Discussion and Questions
Topic: subclassing io.StringIO gives me an unhandled exception
Replies: 3
Views: 1150

subclassing io.StringIO gives me an unhandled exception

I've been trying to subclass io.StringIO but using it keeps giving me an unhandled exception. I've boiled down the code to reproduce the problem to the following. I'm using the lastest MicroPython 1.18 on ESP32-WROOM in case it matters. >>> import io >>> x = io.StringIO() >>> print('abc', file=x) # ...
by mkomon
Fri Oct 22, 2021 8:30 pm
Forum: Programs, Libraries and Tools
Topic: Announcing uOTA and certificate pinning libraries
Replies: 0
Views: 1236

Announcing uOTA and certificate pinning libraries

I've written two supporting libraries for my project that I can share with the world. uOTA - OTA for MicroPython applications Github repo: https://github.com/mkomon/uota Perform OTA update of your code by downloading a .tar.gz file and unpacking it into the filesystem. New firmware is downloaded fro...