From ed0df18f68ce338ce157196b09730dd2e8d72e54 Mon Sep 17 00:00:00 2001 From: opteeks <40588772+opteeks@users.noreply.github.com> Date: Wed, 23 Oct 2019 00:11:25 -0700 Subject: [PATCH] Added 2.9 inch Waveshare E-Ink display --- pwnagotchi/ui/display.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pwnagotchi/ui/display.py b/pwnagotchi/ui/display.py index c0579221..da37322a 100644 --- a/pwnagotchi/ui/display.py +++ b/pwnagotchi/ui/display.py @@ -32,6 +32,9 @@ class Display(View): def is_waveshare27inch(self): return self._implementation.name == 'waveshare27inch' + + def is_waveshare29inch(self): + return self._implementation.name == 'waveshare29inch' def is_oledhat(self): return self._implementation.name == 'oledhat'