From d3368c51e52551a6bc0e2ee47e208338e60ebfdb Mon Sep 17 00:00:00 2001 From: Connor Huffine Date: Fri, 14 Jul 2023 21:58:55 -0400 Subject: [PATCH] Fix orientation of '1' Changed the '1' from left justification to right justification --- firmware/BeanCounter_V10/BeanCounter_V10.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/BeanCounter_V10/BeanCounter_V10.ino b/firmware/BeanCounter_V10/BeanCounter_V10.ino index 1d9a4bb..70e8feb 100644 --- a/firmware/BeanCounter_V10/BeanCounter_V10.ino +++ b/firmware/BeanCounter_V10/BeanCounter_V10.ino @@ -126,7 +126,7 @@ byte numPos[10] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0}; // LED states to display a '6' const byte segLUT[10] = { 0b01110111, - 0b00100100, + 0b00010010, 0b01011101, 0b01011011, 0b00111010,