| 
  • If you are citizen of an European Union member nation, you may not use this service unless you are at least 16 years old.

  • You already know Dokkio is an AI-powered assistant to organize & manage your digital files & messages. Very soon, Dokkio will support Outlook as well as One Drive. Check it out today!

View
 

Lab 4 Make a Data Logger!

Page history last edited by Cam 10 years, 9 months ago

A

a. Based on the readings from the serial monitor, what is the range of the analog values being read?

0-1024 

b. How many bits of resolution does the analog to digital converter (ADC) on the Atmega32U4 have (hint: where might you look to find this sort of thing)? How many are you using with the range of values you're seeing?

10 bits. I am using all of them.

B

1.a. Describe the voltage change over the sensing range of the sensor. A sketch of voltage vs. distance would work also. Does it match up with what you expect from the datasheet?

 

It matched the datasheet.

 

2.a. Include your accelerometer read-out code in your write-up.

#include <LiquidCrystal.h>

 

// initialize the library with the numbers of the interface pins

LiquidCrystal lcd(12, 11, 5, 4, 3, 2);

const int xpin = A3;                  // x-axis of the accelerometer

const int ypin = A2;                  // y-axis

const int zpin = A1;                  // z-axis (only on 3-axis models)

int xvalue = 0;  // variable to store the value coming from the sensor

int yvalue = 0;

int zvalue = 0;

 

void setup() {

  // set up the LCD's number of columns and rows: 

  lcd.begin(16, 2);

}

 

void loop() {

  // set the cursor to column 0, line 1

  // (note: line 1 is the second row, since counting begins with 0):

  lcd.clear();

  xvalue = analogRead(xpin); 

  yvalue = analogRead(ypin); 

  zvalue = analogRead(zpin); 

  lcd.print("x:");

  lcd.print(xvalue);

  lcd.setCursor(0, 1);

  lcd.print("y:");

  lcd.print(yvalue);

  lcd.print(" z:");

  lcd.print(zvalue);

  delay(100);

}

C

1.a. Upload a picture of your rotary encoder in action!

D

1.a. Turn in a copy of your final state diagram.

 

2.

a. How many byte-sized data samples can you store on the Atmega32U4?

1 Kbytes

b. How would you get your analog data from the ADC to be byte-sized?

Divide the 10-bit data by 4;

 

3.

a. Use the lab camera or your own camera/cell phone to record and upload a short demo video of your logger in action.

http://www.youtube.com/watch?v=WHnyLye1Lbk

b. Post a link to the Lab 4 Data Logger Hall of Fame.

DONE

 

 

Comments (1)

Vivien Tsao said

at 4:52 pm on Aug 10, 2013

good job!

You don't have permission to comment on this page.