mirror of
https://github.com/justcallmekoko/ESP32Marauder.git
synced 2025-12-05 20:40:25 -08:00
25 lines
363 B
C++
25 lines
363 B
C++
#ifndef a32u4_interface_h
|
|
#define a32u4_interface_h
|
|
|
|
#include "Display.h"
|
|
#include <HardwareSerial.h>
|
|
|
|
#define BAUD32U4 115200
|
|
|
|
extern Display display_obj;
|
|
|
|
class A32u4Interface {
|
|
public:
|
|
bool supported = false;
|
|
|
|
uint32_t initTime;
|
|
|
|
void begin();
|
|
|
|
void main(uint32_t current_time);
|
|
void test();
|
|
void runScript(String script);
|
|
};
|
|
|
|
#endif
|