Set pinout for production hardware PCB

This commit is contained in:
Skylar Ittner 2026-04-02 19:15:41 -06:00
parent 439b5c391f
commit 100ec19374

View File

@ -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 UP_BUTTON_PIN = 10 # Pin to read for navigation up button
DOWN_BUTTON_PIN = 11 # Pin to read for navigation down 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 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 LED_PIN = 3 # "LED" for testing, 3 for prod
FIRMWARE_VERSION = "0.0.1" FIRMWARE_VERSION = "0.0.1"
@ -70,7 +70,7 @@ USBHID_ENABLED = True # Disable USB, use serial output only (good for debugging)
# #
# Display configuration # 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_WIDTH = 128
DISPLAY_HEIGHT = 64 DISPLAY_HEIGHT = 64
CHAR_WIDTH = 8 CHAR_WIDTH = 8