feat: add Test for WifiConnect API

This commit is contained in:
Mathis
2023-04-24 12:22:52 +02:00
parent 9811022b76
commit 5784e38fbb
7 changed files with 71 additions and 14 deletions

View File

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