Peter Hinch

Results 494 comments of Peter Hinch

I should be able to produce something quickly. What I have in mind is a subclass of `Window` which requires no active widgets. Typically you'd populate it with one or...

I have pushed a version which supports popup widows. Example usage: ```python import hardware_setup # Create a display instance from gui.core.ugui import Screen, ssd, Window import uasyncio as asyncio from...

The solution above is fine, but here is alternative: ```python from uasyncio import Event async def main(evt): await evt.wait() # Code runs after BaseScreen initialisation is complete class BaseScreen(Screen): def...

I have no plans to work on this. Recent aims have been supporting and testing new WiFi platforms and helping support a low power application which takes down the interface...

Apologies for the ridiculous delay in responding to this :) I agree with the points you raised and have pushed an update to address them. The `unclean.py` demo now subscribes...

Coping with the inherent unreliability of WiFi was a core concept with the aim being to provide reliable MQTT on ESP8266 and ESP32. It was subsequently successfully tested on Pyboard...

> If I read between the lines the library just "grew" the way it is and different interfaces were out of scope. The project had two specific objectives: * Asynchronous...

I haven't forgotten these, but they do impose substantial API changes on existing users. By contrast my latest commit has zero API changes :) Re 1,2,4 I'm still unsure whether...

Consider the characteristics of radio links. Near the limits of range connectivity can come and go. TCP can no longer provide a guaranteed connection - there is some phrase on...

I think this should be set in context. Changes related to connectivity outages require a great deal of time consuming testing. In the past such testing threw up many surprising...