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