2024-11-24 18:04:57 +01:00

11 lines
183 B
C++

#include "M5Unified.hpp"
#include "Log.h"
#define TAG "m5stack_bootstrap"
bool m5stack_bootstrap() {
TT_LOG_I(TAG, "Initializing M5Unified");
M5.begin();
return true;
}