12 lines
306 B
C++
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);
|
|
} |