valeur de x de l'accéléromètre

Dependencies:   C12832 MMA7660 mbed

Fork of app-shield-accelerometer by Chris Styles

Files at this revision

API Documentation at this revision

Comitter:
rtk
Date:
Mon Nov 02 14:25:24 2015 +0000
Parent:
5:636ebfdf373b
Commit message:
valeur de x de l'acc?l?rom?tre

Changed in this revision

MMA7660.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
--- a/MMA7660.lib	Thu Feb 06 17:00:28 2014 +0000
+++ b/MMA7660.lib	Mon Nov 02 14:25:24 2015 +0000
@@ -1,1 +1,1 @@
-http://mbed.org/users/Sissors/code/MMA7660/#a8e20db7901e
+http://mbed.org/users/Sissors/code/MMA7660/#36a163511e34
--- a/main.cpp	Thu Feb 06 17:00:28 2014 +0000
+++ b/main.cpp	Mon Nov 02 14:25:24 2015 +0000
@@ -4,17 +4,18 @@
 
 // Using Arduino pin notation
 C12832 lcd(D11, D13, D12, D7, D10);
-MMA7660 MMA(SDA,SCL);
+MMA7660 MMA(I2C_SDA,I2C_SCL);
+
 
 int main()
 {
     lcd.cls();
-    lcd.locate(0,3);
-    lcd.printf("mbed application shield!");
+    lcd.locate(0,0);
+    lcd.printf("lecture de l'accelerometre");
 
     while(1) {
-        lcd.locate(0,14);
-        lcd.printf("x=%.2f y=%.2f z=%.2f",MMA.x(), MMA.y(), MMA.z());
+        lcd.locate(0,8);
+        lcd.printf("x=%.2f",MMA.x());
         wait(0.2);
     }
 }
--- a/mbed.bld	Thu Feb 06 17:00:28 2014 +0000
+++ b/mbed.bld	Mon Nov 02 14:25:24 2015 +0000
@@ -1,1 +1,1 @@
-http://mbed.org/users/mbed_official/code/mbed/builds/cd19af002ccc
\ No newline at end of file
+http://mbed.org/users/mbed_official/code/mbed/builds/9296ab0bfc11
\ No newline at end of file