Peter Hinch
Peter Hinch
As a matter of interest does setting the hostname have any effect in station mode? I can't see any difference here, but perhaps that's my router/dhcp server being uninformative. I...
This can be done without altering the library with a callback function that launches a coro. ```python def callback(): loop = asyncio.get_event_loop() loop.create_task(my_coro()) ```
Quite. @TrevisGordan if you look at the code for **launch** it is logically identical to my callback suggestion above. Both suffer exactly the same potential drawbacks identified by @kevinkk525. I...
I'm puzzled: I have had no problems with `rshell` on ESP32. I don't recall anyone else experiencing this, but a forum search might yield results. I use the following args...
I take your point and I will fix this, but I'm currently fully occupied with [micro-gui](https://github.com/peterhinch/micropython-micro-gui) so anything that isn't causing an actual breakage is on the back burner. You...
I've now pushed an update. In my view the fault was that my code required a specific import order. The patch ensures that the LUT is populated once, when `refresh`...
I am busy on another project at the moment and will be for several weeks. Another difficulty is that it isn't practicable to develop a driver without a display, and...
This is not supported by nano-gui. However the drivers are subclassed from FrameBuffer.framebuf, so you can use [methods documented here](https://docs.micropython.org/en/latest/library/framebuf.html) to draw anything you like. Note that some of the...
Displaying a picture with a maximum of 16 colors was never going to produce great results. However the `framebuf.blit` method has a [documented limitation](https://docs.micropython.org/en/latest/library/framebuf.html#framebuf.FrameBuffer.blit): blitting between buffers created in different...
My initial reaction is not one of enthusiasm. It will break users' applications and my test scripts. It will need to be tested on different displays: some drivers reduce the...