Labs

What We Have Worked on in Labs

Start

Labs

What We Worked On

Lab1

Microcontrollers

Lab2

FFT and Schmitt Trigger

Lab 3

FPGA Video Controller

Lab 4

Radio Communication and Full Robotic Integration

Lab 1 Microcontrollers



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.


    Materials Used:
  • 1 Arduino Uno
  • 1 USB A/B cable
  • 1 Continuous rotation servos
  • 1 Pushbutton
  • 1 red LED
  • 1 Potentiometer
  • Several resistors
  • 1 Solderless breadboard

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 
 
int rWheelPin = 9;
int lWheelPin = 10;
Servo rWheel;
Servo lWheel;

void setup() {
  Serial.begin(9600);
  pinMode(rWheelPin, OUTPUT);
  pinMode(lWheelPin, OUTPUT);
  rWheel.attach(rWheelPin);
  lWheel.attach(lWheelPin);
}

void loop() {
  moveForward();
  turnLeft();
}

void turnRight() {
  Serial.println("Turning Right!");
  rWheel.write(180);
  lWheel.write(0);
  delay(2000);
}

void turnLeft() {
  Serial.println("Turning Left!");
  rWheel.write(0);
  lWheel.write(0);
  delay(750);
}
void moveForward() {
  Serial.println("Moving Forward!");
  rWheel.write(0);
  lWheel.write(180);
  delay(1500);
}




			


Documentation on Soldering


    Soldering Step by Step Instructions:
  • Place components onto the board, making sure it goes in the right way and the part sits flat on the board.
  • Bend the legs slightly to secure the part.
  • Plug in the power for the soldering iron and waits for the soldering iron to warm up.If necessary use a brass soldering iron cleaner or damp sponge to clean the tip.
  • Pick up the Soldering Iron in one hand, and the solder in the other hand.
  • Place soldering iron tip on the pad.
  • Feed a small amount of solder into the joint. The solder should melt on the pad and flow around the component leg.
  • Remove the solder, then remove the soldering iron.
  • Leave the joint to cool for a few seconds, then using a pair of cutters trim the excess component lead.

Welcome to our website!

Github Link

The buttons below are impossible to resist...

Click Me! Look at Me!