Skip to content

Commit e4730c4

Browse files
Merge pull request #1 from niclasonline/master
Datalogger finished with BMP180, MPU6050 and mSD
2 parents b59bc91 + 45f3b36 commit e4730c4

File tree

1 file changed

+169
-0
lines changed

1 file changed

+169
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,169 @@
1+
#include <Wire.h>
2+
#include <Adafruit_Sensor.h>
3+
#include <Adafruit_BMP085_U.h>
4+
#include "I2Cdev.h"
5+
#include "MPU6050.h"
6+
#if I2CDEV_IMPLEMENTATION == I2CDEV_ARDUINO_WIRE
7+
#include "Wire.h"
8+
#include <SD.h>
9+
#endif
10+
/* This driver uses the Adafruit unified sensor library (Adafruit_Sensor),
11+
which provides a common 'type' for sensor data and some helper functions.
12+
13+
To use this driver you will also need to download the Adafruit_Sensor
14+
library and include it in your libraries folder.
15+
16+
You should also assign a unique ID to this sensor for use with
17+
the Adafruit Sensor API so that you can identify this particular
18+
sensor in any data logs, etc. To assign a unique ID, simply
19+
provide an appropriate value in the constructor below (12345
20+
is used by default in this example).
21+
22+
Connections
23+
===========
24+
Connect SCL to analog 5
25+
Connect SDA to analog 4
26+
Connect VDD to 3.3V DC
27+
Connect GROUND to common ground
28+
29+
History
30+
=======
31+
2013/JUN/17 - Updated altitude calculations (KTOWN)
32+
2013/FEB/13 - First version (KTOWN)
33+
*/
34+
MPU6050 accelgyro;
35+
Adafruit_BMP085_Unified bmp = Adafruit_BMP085_Unified(10085);
36+
int16_t ax, ay, az;
37+
int16_t gx, gy, gz;
38+
unsigned long time;
39+
#define OUTPUT_READABLE_ACCELGYRO
40+
const int chipSelect = 4;
41+
File dataFile;
42+
int i =0;
43+
/**************************************************************************/
44+
/*
45+
Displays some basic information on this sensor from the unified
46+
sensor API sensor_t type (see Adafruit_Sensor for more information)
47+
*/
48+
/**************************************************************************/
49+
50+
51+
/**************************************************************************/
52+
/*
53+
Arduino setup function (automatically called at startup)
54+
*/
55+
/**************************************************************************/
56+
void setup(void)
57+
{
58+
#if I2CDEV_IMPLEMENTATION == I2CDEV_ARDUINO_WIRE
59+
Wire.begin();
60+
#elif I2CDEV_IMPLEMENTATION == I2CDEV_BUILTIN_FASTWIRE
61+
Fastwire::setup(400, true);
62+
#endif
63+
Serial.begin(9600);
64+
65+
66+
/* Initialise the sensor */
67+
if(!bmp.begin())
68+
{
69+
/* There was a problem detecting the BMP085 ... check your connections */
70+
Serial.print("BMP180 failed");
71+
while(1);
72+
}
73+
Serial.println("Initializing I2C devices...");
74+
accelgyro.initialize();
75+
Serial.println("Testing device connections...");
76+
Serial.println(accelgyro.testConnection() ? "MPU6050 connection successful" : "MPU6050 connection failed");
77+
Serial.print("Initializing SD card...");
78+
pinMode(SS, OUTPUT);
79+
if (!SD.begin(chipSelect)) {
80+
Serial.println("Card failed, or not present");
81+
// don't do anything more:
82+
while (1) ;
83+
}
84+
Serial.println("card initialized.");
85+
dataFile = SD.open("log.csv", FILE_WRITE);
86+
if (! dataFile) {
87+
Serial.println("error opening log.csv");
88+
// Wait forever since we cant write data
89+
while (1) ;
90+
}
91+
/* Display some basic information on this sensor */
92+
//displaySensorDetails();
93+
}
94+
95+
/**************************************************************************/
96+
/*
97+
Arduino loop function, called once 'setup' is complete (your own code
98+
should go here)
99+
*/
100+
/**************************************************************************/
101+
void loop(void)
102+
{
103+
/* Get a new sensor event */
104+
sensors_event_t event;
105+
bmp.getEvent(&event);
106+
107+
/* Display the results (barometric pressure is measure in hPa) */
108+
if (event.pressure)
109+
{
110+
111+
time = millis();
112+
int hPa = event.pressure;
113+
float temperature;
114+
bmp.getTemperature(&temperature);
115+
accelgyro.getMotion6(&ax, &ay, &az, &gx, &gy, &gz);
116+
int stemp=temperature;
117+
118+
119+
/*char PufferChar1[15];
120+
dtostrf(temperature, 5, 2,PufferChar1);
121+
Serial.println(PufferChar1);*/
122+
/*int stemperature = temperature;
123+
124+
String data = String(time+","+stemperature);
125+
126+
Serial.println(data);*/
127+
String dataString = "";
128+
129+
// read three sensors and append to the string:
130+
131+
132+
dataString += String(time);
133+
dataString += ",";
134+
dataString += String(hPa);
135+
dataString += ",";
136+
dataString += String(stemp);
137+
dataString += ",";
138+
//#ifdef OUTPUT_READABLE_ACCELGYRO
139+
dataString += String(ax);
140+
dataString += ",";
141+
dataString += String(ay);
142+
dataString += ",";
143+
dataString += String(az);
144+
dataString += ",";
145+
dataString += String(gx);
146+
dataString += ",";
147+
dataString += String(gy);
148+
dataString += ",";
149+
dataString += String(gz);
150+
//#endif
151+
dataFile.println(dataString);
152+
Serial.println(dataString);
153+
154+
if(i=25){
155+
dataFile.flush();
156+
i=0;
157+
}
158+
i++;
159+
160+
161+
162+
163+
}
164+
else
165+
{
166+
Serial.println("Sensor error");
167+
}
168+
delay(10);
169+
}

0 commit comments

Comments
 (0)