summaryrefslogtreecommitdiff
path: root/main.cpp
diff options
context:
space:
mode:
authorVegard Storheil Eriksen <zyp@jvnv.net>2011-09-04 21:50:29 +0200
committerVegard Storheil Eriksen <zyp@jvnv.net>2011-09-04 21:50:29 +0200
commit481d3d8c6932bb15bb2799eb0936d4cb0673ae67 (patch)
tree4eae9dfd7d02433d21e4590e718e08ef6fdaccf9 /main.cpp
parent5a6e0b83fbbc3d3841be3384d32c0d4d6aec070c (diff)
Read and send accelerometer.
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp12
1 files changed, 11 insertions, 1 deletions
diff --git a/main.cpp b/main.cpp
index 5a0cd4d..199ffcd 100644
--- a/main.cpp
+++ b/main.cpp
@@ -7,6 +7,7 @@
#include "i2c.h"
#include "itg3200.h"
+#include "bma150.h"
#include "usart.h"
#include "xbee.h"
@@ -59,6 +60,7 @@ class PID {
I2C i2c;
ITG3200 gyro(i2c);
+BMA150 accel(i2c);
void threadmain() {
while(1) {
@@ -71,9 +73,15 @@ void threadmain() {
gyro.y >> 8,
gyro.z & 0xff,
gyro.z >> 8,
+ accel.x & 0xff,
+ accel.x >> 8,
+ accel.y & 0xff,
+ accel.y >> 8,
+ accel.z & 0xff,
+ accel.z >> 8,
};
- xbee_send(6, buf);
+ xbee_send(sizeof(buf), buf);
Time::sleep(100);
}
}
@@ -104,6 +112,7 @@ int main() {
//ITG3200 gyro(i2c);
gyro.init();
+ accel.init();
PPMSum ppmsum;
ppmsum.enable();
@@ -134,6 +143,7 @@ int main() {
// Read sensors.
gyro.update();
+ accel.update();
// Update filter.