Initial public release of SystemK.
This commit is contained in:
parent
387f57cdda
commit
6f51f5b006
129 changed files with 11654 additions and 2 deletions
38
Kconfig
Normal file
38
Kconfig
Normal file
|
@ -0,0 +1,38 @@
|
|||
menu "KTag SystemK"
|
||||
|
||||
config KTAG_N_NEOPIXEL_CHANNELS
|
||||
int "Number of NeoPixel channels"
|
||||
range 1 4
|
||||
default 4
|
||||
help
|
||||
Only values of '1' or '4' are supported.
|
||||
|
||||
config KTAG_MAX_NEOPIXELS_PER_CHANNEL
|
||||
int "Maximum Neopixels per channel"
|
||||
default 8
|
||||
help
|
||||
Maximum number of NeoPixels on a single channel.
|
||||
|
||||
config KTAG_ANIMATION_STEP_TIME_IN_ms
|
||||
int "Time between animation updates (in milliseconds)"
|
||||
default 10
|
||||
|
||||
config KTAG_T_DEFAULT_START_GAME_in_ms
|
||||
int "Default time between game initiation and game start (in milliseconds)"
|
||||
default 30000
|
||||
|
||||
config KTAG_MAX_AUDIO_VOLUME
|
||||
int "Maximum audio volume"
|
||||
range 1 100
|
||||
default 100
|
||||
help
|
||||
Value of audio volume representing the maximum volume possible for this device.
|
||||
|
||||
config KTAG_MIN_AUDIO_VOLUME
|
||||
int "Minimum audio volume"
|
||||
range 0 99
|
||||
default 0
|
||||
help
|
||||
Value of audio volume representing the minimum volume possible for this device.
|
||||
|
||||
endmenu
|
Loading…
Add table
Add a link
Reference in a new issue