From 4fd45b9f9b4f47301c540853db567d3c67823be2 Mon Sep 17 00:00:00 2001 From: Mike Cifelli <1836280-mike-cifelli@users.noreply.gitlab.com> Date: Wed, 16 Jun 2021 19:49:22 -0400 Subject: [PATCH] Fix error --- system-status.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system-status.py b/system-status.py index 5f0d267..6446f0f 100644 --- a/system-status.py +++ b/system-status.py @@ -17,7 +17,7 @@ class SystemStatus: self.hat.set_brightness(0.1) def display(self): - self.hat.set(0, 0, 0, 0, 50) + self.hat.set_pixel(0, 0, 0, 0, 50) self.hat.show() def exit(self):