#include "UIThread.h" #include "SharedState.h" #include 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); }