NoiceSynth/UIThread.cpp
2026-02-27 00:02:56 +01:00

12 lines
306 B
C++

#include "UIThread.h"
#include "SharedState.h"
#include <Arduino.h>
void setupUI() {
// This is the UI thread, running on core 0. For this example, we do nothing here.
}
void loopUI() {
// The loop on core 0 is responsible for updating the UI. In this simple example, it does nothing.
delay(100);
}