mirror of
https://github.com/Aviortheking/remote-firmware.git
synced 2025-04-22 02:42:11 +00:00
20 lines
207 B
C++
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
|