mirror of
https://github.com/letscontrolit/ESPEasy.git
synced 2026-09-12 17:45:49 +00:00
15 lines
229 B
Plaintext
15 lines
229 B
Plaintext
#include <stdio.h>
|
|
#include "Arduino.h"
|
|
#include "@SOURCE_INO_FILE@"
|
|
|
|
using namespace testarduino;
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
printf("Calling setup()...\n");
|
|
setup();
|
|
|
|
printf("Calling loop()...\n");
|
|
loop();
|
|
}
|