From f43eb04e363e56647fdfc60e838c08210b422efb Mon Sep 17 00:00:00 2001 From: frank Date: Mon, 20 Feb 2023 22:27:07 -0500 Subject: [PATCH] suppress GPIO init --- Playzing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Playzing.py b/Playzing.py index ee56f88..169ecb1 100755 --- a/Playzing.py +++ b/Playzing.py @@ -181,7 +181,7 @@ class Playzing(pgfw.Game): if self.delegate.compare(event, "any"): os.chdir(pathlib.Path("games/ibitfit")) print(f"current working dir is {os.getcwd()}") - ibitfit = ElectricSieve() + ibitfit = ElectricSieve(suppress_gpio_init=True) ibitfit.display.set_screen(dimensions=ibitfit.configuration.get("display", "dimensions")) ibitfit.run() os.chdir(pathlib.Path("../.."))