From 83e9ee6318bd8e8d92411b123417c29d01d7af45 Mon Sep 17 00:00:00 2001 From: V0r-T3x <70115207+V0r-T3x@users.noreply.github.com> Date: Sun, 1 Dec 2024 20:15:38 -0500 Subject: [PATCH] fixing log reference --- pwnagotchi/ui/hw/gamepi15.py | 2 +- pwnagotchi/ui/hw/spotpear154lcd.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pwnagotchi/ui/hw/gamepi15.py b/pwnagotchi/ui/hw/gamepi15.py index 1a4b54a5..6ef1ad23 100644 --- a/pwnagotchi/ui/hw/gamepi15.py +++ b/pwnagotchi/ui/hw/gamepi15.py @@ -32,7 +32,7 @@ class GamePi15(DisplayImpl): return self._layout def initialize(self): - logging.info("initializing gamepi20 display") + logging.info("initializing gamepi15 display") from pwnagotchi.ui.hw.libs.pimoroni.displayhatmini.ST7789 import ST7789 self._display = ST7789(0, 0, 25, 24, 27, 240, 240, 270, True, 60 * 1000 * 1000, 0, 0) diff --git a/pwnagotchi/ui/hw/spotpear154lcd.py b/pwnagotchi/ui/hw/spotpear154lcd.py index ff382877..5ae5e165 100644 --- a/pwnagotchi/ui/hw/spotpear154lcd.py +++ b/pwnagotchi/ui/hw/spotpear154lcd.py @@ -32,7 +32,7 @@ class Spotpear154lcd(DisplayImpl): return self._layout def initialize(self): - logging.info("initializing gamepi15 display") + logging.info("initializing spotpear154lcd display") from pwnagotchi.ui.hw.libs.pimoroni.displayhatmini.ST7789 import ST7789 self._display = ST7789(0, 0, 22, 24, 27, 240, 240, 0, True, 60 * 1000 * 1000, 0, 0)