Daniel Hallgren
Daniel Hallgren
Seems like the cleanup is never run.
Same problem here! Seems like all events are completely ignored!
[This issue](https://github.com/peterhinch/micropython-nano-gui/issues/27) fixed it for me, after struggling with the same issue for days. Seems like you have initialize the SPI using extra parameters, and set an initial value for...
One thing to note regarding JSON is that `undefined` does not exist, whereas `null` is a value. For instance, `JSON.parse('undefined')` throws an error, but `JSON.parse(null)` returns `null`. When stringifying a...