Files
T-DEV-811/IOT/src/main.cpp
2023-04-24 12:22:52 +02:00

16 lines
170 B
C++

#ifndef TESTING
#include <Arduino.h>
#include "Program.h"
Program* program;
void setup() {
program = new Program();
}
void loop() {
program->loop();
}
#endif