refactor encoder. no need for Dir enum.

This commit is contained in:
2025-06-28 09:45:50 -07:00
parent 6fa5674909
commit d56355a94b
4 changed files with 14 additions and 39 deletions

View File

@ -11,8 +11,8 @@ struct AppState {
bool encoder_reversed = false;
bool refresh_screen = true;
bool editing_param = false;
int selected_param = 0;
int selected_sub_param = 0;
byte selected_param = 0;
byte selected_sub_param = 0;
byte selected_channel = 0; // 0=tempo, 1-6=output channel
byte selected_shuffle = 0;
Clock::Source selected_source = Clock::SOURCE_INTERNAL;