initial commit

This commit is contained in:
2026-02-12 00:45:31 -08:00
commit 5f168f370b
3024 changed files with 804889 additions and 0 deletions

View File

@@ -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);