mirror of
https://github.com/jayofelony/pwnagotchi.git
synced 2025-07-01 18:37:27 -04:00
Initialize as "DummyDisplay", not "inky"
Signed-off-by: Sniffleupagus <129890632+Sniffleupagus@users.noreply.github.com>
This commit is contained in:
@ -6,7 +6,7 @@ from pwnagotchi.ui.hw.base import DisplayImpl
|
|||||||
|
|
||||||
class DummyDisplay(DisplayImpl):
|
class DummyDisplay(DisplayImpl):
|
||||||
def __init__(self, config):
|
def __init__(self, config):
|
||||||
super(DummyDisplay, self).__init__(config, 'inky')
|
super(DummyDisplay, self).__init__(config, 'DummyDisplay')
|
||||||
|
|
||||||
def layout(self):
|
def layout(self):
|
||||||
width=480 if 'width' not in self.config else self.config['width']
|
width=480 if 'width' not in self.config else self.config['width']
|
||||||
|
Reference in New Issue
Block a user