From f4f883aa06a74110b5d4b5b08962a8013753701d Mon Sep 17 00:00:00 2001 From: Jeroen Oudshoorn Date: Thu, 11 Jan 2024 07:37:52 +0100 Subject: [PATCH] Invert display --- pwnagotchi/ui/view.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pwnagotchi/ui/view.py b/pwnagotchi/ui/view.py index aa24ee03..0953838e 100644 --- a/pwnagotchi/ui/view.py +++ b/pwnagotchi/ui/view.py @@ -16,8 +16,8 @@ from pwnagotchi.ui.components import * from pwnagotchi.ui.state import State from pwnagotchi.voice import Voice -WHITE = 0xFF -BLACK = 0x00 +WHITE = 0x00 +BLACK = 0xFF ROOT = None