William Sokol
Published © GPL3+

Programming a BallyBot: A Step-by-Step Tutorial

In this tutorial, we will guide you through the process of programming your BallyBot to get it up and running.

BeginnerProtip1 hour161
Programming a BallyBot: A Step-by-Step Tutorial

Things used in this project

Hardware components

BallyBot robot
×1
FTDI TYPE-C USB
×1
USB A to C Cable
×1

Software apps and online services

Arduino IDE
Arduino IDE

Story

Read more

Code

Blink For ESP32

Arduino
void setup() {
  // initialize digital pin LED_BUILTIN as an output.
  pinMode(4, OUTPUT);
}

// the loop function runs over and over again forever
void loop() {
  digitalWrite(4, HIGH);  // turn the LED on (HIGH is the voltage level)
  delay(1000);                      // wait for a second
  digitalWrite(4, LOW);   // turn the LED off by making the voltage LOW
  delay(1000);                      // wait for a second
}

BallyBots Repo

Credits

William Sokol
10 projects • 4 followers
Robots and programming

Comments