From 5ca0bebea71417dc5cfd0b462ca6c5f831df7694 Mon Sep 17 00:00:00 2001 From: Jeroen Oudshoorn Date: Fri, 12 Jan 2024 21:18:46 +0100 Subject: [PATCH] Version 2.6.6 --- pwnagotchi/ui/hw/libs/waveshare/epdconfig.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pwnagotchi/ui/hw/libs/waveshare/epdconfig.py b/pwnagotchi/ui/hw/libs/waveshare/epdconfig.py index c469b0f5..72dfd076 100644 --- a/pwnagotchi/ui/hw/libs/waveshare/epdconfig.py +++ b/pwnagotchi/ui/hw/libs/waveshare/epdconfig.py @@ -235,7 +235,7 @@ if os.path.exists('/sys/bus/platform/drivers/gpiomem-bcm2835'): elif os.path.exists('/sys/bus/platform/drivers/gpio-x3'): implementation = SunriseX3() else: - implementation = JetsonNano() + implementation = RaspberryPi() for func in [x for x in dir(implementation) if not x.startswith('_')]: setattr(sys.modules[__name__], func, getattr(implementation, func))