add test call

This commit is contained in:
2023-08-05 11:55:21 +02:00
parent 347e788680
commit 908ca96c39
4 changed files with 94 additions and 1 deletions

View File

@ -1,7 +1,11 @@
#ifndef PROGRAM_H
#define PROGRAM_H
#include "Arduino.h"
#include <Arduino.h>
#include <ESP8266WiFi.h>
#include "DiscordAPI.h"
class Program {
public:
@ -14,6 +18,9 @@ public:
* Program main loop
*/
void loop();
private:
DiscordAPI* discord;
};
#endif