Modified example of LED / Accelerometer demo. Added TSI for brightness control

Dependencies:   MMA8451Q TSI USBDevice mbed

Fork of FRDM_MMA8451Q by mbed official

Files at this revision

API Documentation at this revision

Comitter:
emilmont
Date:
Thu Oct 11 10:56:33 2012 +0000
Child:
1:91f83cc244b3
Commit message:
Freedom board accelerometer example

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-KL25Z.lib Show annotated file Show diff for this revision Revisions of this file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/MMA8451Q.lib	Thu Oct 11 10:56:33 2012 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/emilmont/code/MMA8451Q/#6149091f755d
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Thu Oct 11 10:56:33 2012 +0000
@@ -0,0 +1,20 @@
+#include "mbed.h"
+#include "MMA8451Q.h"
+
+#define MMA8451_I2C_ADDRESS (0x1d<<1)
+
+int main(void) {
+    DigitalOut led(LED_GREEN);
+    MMA8451Q acc(P_E25, P_E24, MMA8451_I2C_ADDRESS);
+    printf("WHO AM I: 0x%2X\r\n", acc.getWhoAmI());
+    
+    while (true) {
+        printf("-----------\r\n");
+        printf("acc_x: %d\r\n", acc.getAccX());
+        printf("acc_y: %d\r\n", acc.getAccY());
+        printf("acc_z: %d\r\n", acc.getAccZ());
+        
+        wait(1);
+        led = !led;
+    }
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed-KL25Z.lib	Thu Oct 11 10:56:33 2012 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/emilmont/code/mbed-KL25Z/#2fd6de8f897c