14 lines
282 B
C
14 lines
282 B
C
#ifndef UI_THREAD_H
|
|
#define UI_THREAD_H
|
|
|
|
#include "TrackerTypes.h"
|
|
|
|
void loopUI();
|
|
void mutateSequence(Step (*target)[NUM_STEPS]);
|
|
void generateRandomScale();
|
|
void generateTheme(int themeType);
|
|
bool loadSequence();
|
|
void factoryReset();
|
|
void saveSequence(bool quiet = false);
|
|
|
|
#endif |