Kenan Mahmutović Anes Lučkin

Dependencies:   MMA8451Q mbed

Files at this revision

API Documentation at this revision

Comitter:
tim010
Date:
Thu May 15 16:53:36 2014 +0000
Commit message:
LV9_GRUPA7_TIM010_ZAD1

Changed in this revision

MMA8451Q.lib Show annotated file Show diff for this revision Revisions of this file
main.cpp Show annotated file Show diff for this revision Revisions of this file
mbed.bld Show annotated file Show diff for this revision Revisions of this file
diff -r 000000000000 -r 619796332e11 MMA8451Q.lib
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/MMA8451Q.lib	Thu May 15 16:53:36 2014 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/JoKer/code/MMA8451Q/#2d14600116fc
diff -r 000000000000 -r 619796332e11 main.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Thu May 15 16:53:36 2014 +0000
@@ -0,0 +1,22 @@
+#include "mbed.h"
+#include "MMA8451Q.h"
+#define MMA8451_I2C_ADDRESS (0x1d<<1)
+
+MMA8451Q acc(PTE25, PTE24, MMA8451_I2C_ADDRESS);
+
+Serial pc(USBTX, USBRX); // tx, rx
+
+
+int main() {
+   while(1) {
+       
+   float x_osa = acc.getAccX();
+   float y_osa = acc.getAccY();
+   float z_osa = acc.getAccZ();
+   pc.printf("X osa:%f",x_osa);
+   pc.printf(" y osa:%f",y_osa);
+   pc.printf(" Z osa:%f\n",z_osa);
+   wait(0.8);
+   }
+    
+}
diff -r 000000000000 -r 619796332e11 mbed.bld
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Thu May 15 16:53:36 2014 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/mbed/builds/8a40adfe8776
\ No newline at end of file