Florian Bouillon dbfc66687b
feat: Initial Commit
Signed-off-by: Avior <f.bouillon@aptatio.com>
2022-11-24 12:11:23 +01:00

20 lines
207 B
C++

#ifndef PROGRAM_H
#define PROGRAM_H
#include "Arduino.h"
class Program {
public:
/**
* Program startup
*/
Program();
/**
* Program main loop
*/
void loop();
};
#endif