Library to help learn how to use Redbots
- Note: This library depends on the SparkFun RedBot library, you must install that before installing this library
- Download library as zip
- Arduino IDE -> Sketch -> Include Library -> Add ZIP Library
- Coming soon!
// FILE: examples/basic/basic.ino
#include <RedBotHelpers.h>
auto my_redbot = RedBot();
void setup() {}
void loop()
{
my_redbot.move_forward(2_s);
my_redbot.move_backward(2_s);
}