Ottobot
Ottobot (aka Mr. Legs)
Ottobot (aka Mr. Legs)
Components
Components
Build Instructions
Build Instructions
OttoDIY_Manual_V9.pdf
Programming
Programming
Calibrate Servo Motor
Calibrate Servo Motor
//Setup for Servo Motor
#include <Servo.h>
Servo myservo;
void setup() {
Serial.begin(9600);
myservo.attach(11);
}
void loop() {
myservo.write(90);
delay(500);
}