toto/BE c/HelloWorld/HelloWorld.ino
Montaigu-Lancelin Emilie baa82893ad tp1812fin
2025-12-18 12:06:34 +01:00

15 lines
No EOL
229 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();
}