Arduino Data Logger: Difference between revisions

From MAGLab
Jump to navigation Jump to search
(Created page with "**I need an account to add pictures** == ARDUINO DATA LOGGER == ==Introduction:== This is a data logger I made for my class. I couldn't find any instructions that I could us...")
 
No edit summary
Line 1: Line 1:
**I need an account to add pictures**
**I need an account to add pictures**
== ARDUINO DATA LOGGER ==


==Introduction:==
==Introduction:==
Line 7: Line 5:


Requirements
Requirements
    Collect data from at least 2 sensors
Collect data from at least 2 sensors
    write the data at regular intervals to the SD card, collect it in a comma separated variable file (*.CSV) that can be imported into excel.
write the data at regular intervals to the SD card, collect it in a comma separated variable file (*.CSV) that can be imported into excel.
    display the data to your LCD screen
display the data to your LCD screen
    have the background color of the screen change somehow. Either from the data being collected (green background for nominal values, red for warning), or through the use of a button.
have the background color of the screen change somehow. Either from the data being collected (green background for nominal values, red for warning), or through the use of a button.


== Parts ==
== Parts ==
==Parts==
 
Here are what I used for parts. From my experience if your trying to follow instructions while learning and are using different parts it is much harder.
 
If you don't want to buy the stackable header pins for the Datalogger shield you can use some way like how I modified the Datalogger shield in step 2 so that it could be placed in the bread board.
[https://www.adafruit.com/product/1141 Datalogger shield]
[http://www.adafruit.com/products/85 Stackable header pins]
[http://www.adafruit.com/products/398 LCD Display]
[https://www.adafruit.com/products/170 Experimentation Kit for Arduino (Uno R3)]
      or
[http://www.adafruit.com/products/50 Arduino Uno]
[https://www.adafruit.com/products/161 Photo cell]
[https://www.adafruit.com/products/165 Analog Temperature sensor]
 
==Modify the Data logger shield==

Revision as of 01:59, 21 November 2013

    • I need an account to add pictures**

Introduction:

This is a data logger I made for my class. I couldn't find any instructions that I could use to make the Arduino record the light brightness and the temperature. Then display the temperature and the light value on the LCD then Save it to the SD card

Requirements

Collect data from at least 2 sensors
write the data at regular intervals to the SD card, collect it in a comma separated variable file (*.CSV) that can be imported into excel.
display the data to your LCD screen
have the background color of the screen change somehow. Either from the data being collected (green background for nominal values, red for warning), or through the use of a button.

Parts

Here are what I used for parts. From my experience if your trying to follow instructions while learning and are using different parts it is much harder.

If you don't want to buy the stackable header pins for the Datalogger shield you can use some way like how I modified the Datalogger shield in step 2 so that it could be placed in the bread board.

Datalogger shield
Stackable header pins
LCD Display
Experimentation Kit for Arduino (Uno R3)
     or
Arduino Uno
Photo cell
Analog Temperature sensor

Modify the Data logger shield