hoverbrett/hoverbrettctrl/src/main.cpp

14 lines
209 B
C++
Raw Normal View History

2022-03-28 17:52:20 +00:00
#include <Arduino.h>
#include <hoverboard-esc-serial-comm.h>
ESCSerialComm esc;
2022-03-28 17:52:20 +00:00
void setup() {
esc = ESCSerialComm(); //create object
2022-03-28 17:52:20 +00:00
}
2022-03-28 17:52:20 +00:00
void loop() {
// put your main code here, to run repeatedly:
}