Compare commits

...

2 Commits

Author SHA1 Message Date
05a1b65bb9 Bump firmware version to 1.0.0 2026-04-02 19:16:14 -06:00
100ec19374 Set pinout for production hardware PCB 2026-04-02 19:15:41 -06:00

View File

@ -43,9 +43,9 @@ 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 = "1.0.0"
# #
# Scanner configuration # Scanner configuration
@ -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