add some code

This commit is contained in:
2025-09-05 13:25:11 +08:00
parent 9ff0a99e7a
commit 3cf1229a85
8911 changed files with 2535396 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
menu "IOT Knob"
config KNOB_PERIOD_TIME_MS
int "BUTTON PERIOD TIME (MS)"
range 2 10
default 3
help
"Knob scan interval"
config KNOB_DEBOUNCE_TICKS
int "KNOB DEBOUNCE TICKS"
range 1 8
default 2
help
"One CONFIG_KNOB_DEBOUNCE_TICKS equal to n CONFIG_KNOB_PERIOD_TIME_MS"
config KNOB_HIGH_LIMIT
int "KNOB HIGH LIMIT"
range 1 10000
default 1000
help
"The highest number that can be counted by the knob"
config KNOB_LOW_LIMIT
int "KNOB LOW LIMIT"
range -10000 -1
default -1000
help
"The lowest number that can be counted by the knob"
endmenu