In this lab, we learned the basics of the Arduino Uno microcontroller and Arduino IDE. We constructed simple Arduino programs using various parts such as LEDs and continuous rotation servos. At the end of this lab, we also started assembling our robots and got it to move in a square.
1. To get familiar with Arduino and Arduino IDE. We started by uploading a simple blink sketch provided by Arduino IDE. This sketch simply blinks the built-in LED on the Arduino.
// the setup function runs once when you press reset or power the board
void setup() {
pinMode(LED_BUILTIN, OUTPUT); // initialize digital pin LED_BUILTIN as an output.
}
// the loop function runs over and over again forever
void loop() {
digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for a second
digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making the voltage LOW
delay(1000); // wait for a second
}
2. Then, we modified the blink sketch to blink an external LED.
void setup() {
pinMode(2, OUTPUT); // initialize digital pin 2 as an output.
}
void loop() {
digitalWrite(2, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for a second
digitalWrite(2, LOW); // turn the LED off by making the voltage LOW
delay(1000); // wait for a second
}
3. Then, we modified the blink sketch to blink an external LED.After we get the external LED to work, we made a voltage divider using a resistor and a potentiometer. Then we took the output of the voltage divider and displayed the value on the serial monitor. The analogRead function of the Arduino has values from 0 to 1024. These values map to the actual voltage output from 0 to 5V. We then used this code to check every analog pins on the Arduino to make sure all of them were working properly. We found that A4 and A5 read different values than other analog input pins. We were not sure exactly why. We will need to consult the TA or professor about this question.
int value = A1; //Used A1 as the analog input
void setup() {
Serial.begin(9600);
}
void loop() {
Serial.println(analogRead(value)); //print the analog
delay(500); // wait for half a second
}
4. Then we used the voltage divider we made from the previous step to control the brightness of an LED. We used a PWM pin as an “analog output”. PWM is a very fast square wave with different duty cycles, creating the effect of an analog or fractional output voltage.
int analog = A1; //set A1 as the analog input from the potentiometer
int value =0;
int ledPin = 9; //use digital pin 9 as the output for the LED
void setup() {
Serial.begin(9600);
pinMode(ledPin, OUTPUT);
}
void loop() {
value = analogRead(analog);
analogWrite(ledPin, value/4); //analogRead from 0 to 1024, analogWrite from 0 to 255.
delay(1000); // wait for a second
}
5. After we finished all the previous steps, we worked on how to control the servo. The servo is main robot propulsion mechanism. The servo we used in the lab rotates continuously, which was different from the other servo motor. Therefore, calling the Servo function ServoName.write(X) changes the servo speeds instead of position. 0 corresponds to one direction, and 180 corresponds to the other direction, 90 will stop the servo. At first, the servo wasn’t stopping at 90. We realized that we needed to calibrate the servo after we asked the TA. After we calibrated the servo motor, we incorporated the servo with the potentiometer so the potentiometer can control the speed of the servo.
#include
int analog = A1; //initialize A1 as the input from the potentiometer
Servo myservo; //initialize a servo instance
void setup() {
Serial.begin(9600);
myservo.attach(9); // sets digital pin 9 as the output
}
void loop() {
myservo.write(analogRead(analog)/1024*180);
delay(100);
}
6. After we finished all the exercises, we started assembling our robot. We put on two servos, and the ball bearings. We then used the Arduino to make it run autonomously in a square.
#include