toto/project_name.ino
Montaigu-Lancelin Emilie 62b5e6323a debuttp1812
2025-12-18 10:13:20 +01:00

15 lines
230 B
C++

#include "Application.h"
Application myApplication;
void setup()
{
// put your setup code here, to run once:
myApplication.init();
}
void loop()
{
// put your main code here, to run repeatedly:
myApplication.run();
}