Files
T-DEV-811/IOT/src/main.cpp
2023-05-02 21:52:59 +02:00

15 lines
165 B
C++

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