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