Lesson Plan
Lesson Overview
I show you how to control all the motors on your Barnabas wood robot arm. using the dials.
Video Tutorial
Sample Code
/*
Challenge #1: Create individual move functions to simplify code
Challenge #2: Experiment with picking up an object
*/
#include <Servo.h>
#define CLAW_OPEN 120
#define CLAW_CLOSE 5
#define BASE_MAX 180
#define BASE_MIN 0
#define TILT_MAX 180
#define TILT_MIN 120
#define EXTEND_MAX 150
#define EXTEND_MIN 75
//- servos move half a circle 0-180 degrees.
Servo baseMotor;
Servo tiltMotor;
Servo extendMotor;
Servo clawMotor;
//- runs only once when you turn on
void setup() {
baseMotor.attach(6);
tiltMotor.attach(9);
extendMotor.attach(10);
clawMotor.attach(11);
home();
delay(1000);
Serial.begin(9600);
}
void home() {
tiltMotor.write(90);
baseMotor.write(90);
extendMotor.write(90);
clawMotor.write(90);
}
void moveMotor(Servo motor, int target, int min, int max) {
//- figure out if we need to move up or down
int myCurrentAngle = motor.read();
//- if myCurrentAngle is > target, go down
if (myCurrentAngle > target) {
moveAngleDown(target,motor,min,max);
}
//- if myCurrentAngle is < target, go up
if (myCurrentAngle < target) {
moveAngleUp(target,motor,min,max);
}
}
void moveAngleUp(int target, Servo motor, int min, int max) {
int angle = motor.read();
while (angle <= target) {
if (angle <= max) {
//-do this code
motor.write(angle);
delay(20);
angle = angle + 5;
}
else {
break;
}
}
}
void moveAngleDown(int target, Servo motor, int min, int max) {
int angle = motor.read();
while (angle >= target) {
if (angle >= min) {
motor.write(angle);
delay(20);
angle = angle - 5;
}
else {
break;
}
}
}
void moveClaw(int target) {
moveMotor(clawMotor,target,CLAW_CLOSE, CLAW_OPEN);
}
void moveBase(int target) {
moveMotor(baseMotor,target, BASE_MIN, BASE_MAX);
}
void moveTilt(int target) {
moveMotor(tiltMotor,target,TILT_MIN, TILT_MAX);
}
void moveExtend(int target) {
moveMotor(extendMotor,target,EXTEND_MIN, EXTEND_MAX);
}
//- runs forever in a loop after setup
void loop() {
//- analogRead(0) -> CONTROL 1 -> Base Motor
//- analogRead(1) -> CONTROL 2 -> Tilt Motor
//- analogRead(2) -> CONTROL 3 -> Extend Motor
//- analogRead(3) -> CONTROL 4 -> Claw Motor
//- range of analog is [0-1023]
//-BaseMotor
if (analogRead(0) == 0) moveBase(0);
if (analogRead(0)==256) moveBase(40);
if (analogRead(0)==512) moveBase(90);
if (analogRead(0)==768) moveBase(135);
if (analogRead(0)==1023) moveBase(180);
//-TiltMotor
if (analogRead(1) == 0) moveTilt(0);
if (analogRead(1)==256) moveTilt(40);
if (analogRead(1)==512) moveTilt(90);
if (analogRead(1)==768) moveTilt(135);
if (analogRead(1)==1023) moveTilt(180);
//-ExtendMotor
if (analogRead(2) == 0) moveExtend(0);
if (analogRead(2)==256) moveExtend(40);
if (analogRead(2)==512) moveExtend(90);
if (analogRead(2)==768) moveExtend(135);
if (analogRead(2)==1023) moveExtend(180);
//-ClawMotor
if (analogRead(3) == 0) moveClaw(0);
if (analogRead(3)==256) moveClaw(40);
if (analogRead(3)==512) moveClaw(90);
if (analogRead(3)==768) moveClaw(135);
if (analogRead(3)==1023) moveClaw(180);
}