first commit
This commit is contained in:
commit
5893b00dd2
1669 changed files with 1982740 additions and 0 deletions
|
|
@ -0,0 +1,21 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include <Arduino.h>
|
||||
#include "buttons.h"
|
||||
|
||||
|
||||
extern ColorSelector color_selector;
|
||||
extern CountingButton vis_selector;
|
||||
|
||||
struct ui_state {
|
||||
ui_state() { memset(this, 0, sizeof(*this)); }
|
||||
int which_visualizer;
|
||||
int color_scheme;
|
||||
//float color_wheel_pos;
|
||||
//float velocity_bias_pos; // default to 1.0f for buttons missing velocity.
|
||||
};
|
||||
|
||||
void ui_init();
|
||||
ui_state ui_update(uint32_t now_ms, uint32_t delta_ms);
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue