suppress GPIO init

This commit is contained in:
ohsqueezy 2023-02-20 22:27:07 -05:00
parent c3f42cba40
commit f43eb04e36
1 changed files with 1 additions and 1 deletions

View File

@ -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("../.."))