From 100ec193746c02ecb5e9414fca2adf391b8d32b8 Mon Sep 17 00:00:00 2001 From: Skylar Ittner Date: Thu, 2 Apr 2026 19:15:41 -0600 Subject: [PATCH] Set pinout for production hardware PCB --- src/barcodescanner/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/barcodescanner/config.py b/src/barcodescanner/config.py index b92f803..bc5e9e3 100644 --- a/src/barcodescanner/config.py +++ b/src/barcodescanner/config.py @@ -43,7 +43,7 @@ TRIGGER_PIN = 2 # Pin that connects to the scan module's trigger line, pulls the UP_BUTTON_PIN = 10 # Pin to read for navigation up button DOWN_BUTTON_PIN = 11 # Pin to read for navigation down button HAS_WS2812 = True # Has an WS2812/Neopixel, will use instead of normal LED -WS2812_PIN = 13 # GPIO pin for WS2812 +WS2812_PIN = 3 # GPIO pin for WS2812 LED_PIN = 3 # "LED" for testing, 3 for prod FIRMWARE_VERSION = "0.0.1" @@ -70,7 +70,7 @@ USBHID_ENABLED = True # Disable USB, use serial output only (good for debugging) # # Display configuration # -ENABLE_DISPLAY = False # Set to False to ignore display commands +ENABLE_DISPLAY = True # Set to False to ignore display commands DISPLAY_WIDTH = 128 DISPLAY_HEIGHT = 64 CHAR_WIDTH = 8