Peter Hinch
Peter Hinch
I reopened it to draw your attention to the fact that I'd modified this further. As far as I'm concerned this is now fixed. If you're happy we can close...
Looking at the source, the MicroPython implementation requires a value `n` being the number of characters to read. However the [CPython docs](https://docs.python.org/3/library/asyncio-stream.html) has: > coroutine read(n=-1) Read up to n...
I think this is because you are using the new version of **uasyncio**. The **cancel** method is now a method of the **Task** instance so your code should read ```python...
This is an issue with the openmv firmware build, and implies it is unable to run official uasyncio. This could be taken up with openmv. The file **core.py** in uasyncio...
I can confirm this bug on a Pyboard. I will investigate.
Thanks for the report. I've pushed an update to fix this. It was a classic array bounds error, performing one iteration too many and accessing a coefficient value from the...
It's certainly a good idea. Have you done a search to see if it's already been done? I did experiment with them when playing with my balancing robot but settled...
That's pure Python which is undoubtedly the easy way to do it if performance is not an issue. The focus of this repo is on realtime performance for hardware projects....
If you look at the [setup example for this display](https://github.com/peterhinch/micropython-nano-gui/blob/master/setup_examples/st7789_pico_lcd_114.py) you will see that the SSD constructor needs a `display=TDISPLAY` arg: ```python from drivers.st7789.st7789_4bit import * # code omitted ssd...
I'm afraid I have no idea how Asian fonts are handled. If they are Unicode there should be no problem - see [the docs](https://github.com/peterhinch/micropython-font-to-py/blob/master/FONT_TO_PY.md#312-optional-arguments) where the `-k` arg has been...