From 17554ccf7c00390bddfba48c44b1dbea1caf8f30 Mon Sep 17 00:00:00 2001 From: Peter Hinch Date: Tue, 19 Jul 2022 12:26:23 +0100 Subject: [PATCH] ugui.py: Enable alternative Input class. --- gui/core/ugui.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gui/core/ugui.py b/gui/core/ugui.py index b6c9463..8c0ad6c 100644 --- a/gui/core/ugui.py +++ b/gui/core/ugui.py @@ -4,6 +4,7 @@ # Copyright (c) 2019-2022 Peter Hinch # Credit to Bart Cerneels for devising and prototyping the 3-button mode +# Also for suggesting abstracting the input device class. import uasyncio as asyncio from uasyncio import Event @@ -20,7 +21,7 @@ ssd = None _vb = True gc.collect() -__version__ = (0, 1, 5) +__version__ = (0, 1, 6) # Null function dolittle = lambda *_ : None