Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 618 Bytes

README.md

File metadata and controls

30 lines (22 loc) · 618 Bytes

Redbot Helpers

Library to help learn how to use Redbots

Installation

RedBot

ZIP

  1. Download library as zip
  2. Arduino IDE -> Sketch -> Include Library -> Add ZIP Library

Library Manager

  • Coming soon!

Basic Usage

// 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);
}