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