Skip to content

Commit

Permalink
Adds NeoPixel Static settings, LED tests, & Simple TUSB identifiers
Browse files Browse the repository at this point in the history
Pixel Static settings is now properly exposed to the user with a similar paradigm to the selectable profile colors in the profiles tab.
LED tests were a requested thing during the whole Pixel troubleshooting debacle.
Simple TUSB identifier presets should have a certain someone chill the fuck out at least.
  • Loading branch information
SeongGino authored Jun 5, 2024
1 parent 696302a commit dcca30a
Show file tree
Hide file tree
Showing 4 changed files with 832 additions and 298 deletions.
14 changes: 11 additions & 3 deletions constants.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ enum boardTypes_e {
adafruitKB2040,
arduinoNanoRP2040,
waveshareZero,
vccgndYD,
generic = 255
};

Expand Down Expand Up @@ -64,7 +65,8 @@ enum boardInputs_e {
battery,
analogX,
analogY,
tempPin
tempPin,
boardInputsCount
};

enum boolTypes_e {
Expand All @@ -76,7 +78,8 @@ enum boolTypes_e {
holdToPause,
commonAnode,
lowButtonsMode,
rumbleFF
rumbleFF,
boolTypesCount
};

enum settingsTypes_e {
Expand All @@ -87,7 +90,12 @@ enum settingsTypes_e {
solenoidHoldLength,
autofireWaitFactor,
holdToPauseLength,
customLEDcount
customLEDcount,
customLEDstatic,
customLEDcolor1,
customLEDcolor2,
customLEDcolor3,
settingsTypesCount
};

enum pinTypes_e {
Expand Down
Loading

0 comments on commit dcca30a

Please sign in to comment.