Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Revision 0:0e251e6860c0, committed 2014-05-12
- Comitter:
- tim010
- Date:
- Mon May 12 08:24:39 2014 +0000
- Commit message:
- LV9-GRUPA2-TIM10
Changed in this revision
diff -r 000000000000 -r 0e251e6860c0 MMA8451Q.lib --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/MMA8451Q.lib Mon May 12 08:24:39 2014 +0000 @@ -0,0 +1,1 @@ +http://mbed.org/users/emilmont/code/MMA8451Q/#c4d879a39775
diff -r 000000000000 -r 0e251e6860c0 main.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/main.cpp Mon May 12 08:24:39 2014 +0000 @@ -0,0 +1,28 @@ +#include "mbed.h" +#include "MMA8451Q.h" + +#if defined (TARGET_KL25Z) || defined (TARGET_KL46Z) + PinName const SDA = PTE25; + PinName const SCL = PTE24; +#elif defined (TARGET_KL05Z) + PinName const SDA = PTB4; + PinName const SCL = PTB3; +#else + #error TARGET NOT DEFINED +#endif + +#define MMA8451_I2C_ADDRESS (0x1d<<1) +Serial pc(USBTX, USBRX); + +int main(void) { + MMA8451Q acc(SDA, SCL, MMA8451_I2C_ADDRESS); + float x, y, z; + + while(1) { + x = acc.getAccX(); + y = acc.getAccY(); + z = acc.getAccZ(); + pc.printf("x: %f, y: %f, z: %f\n", x, y, z); + wait(1); + } +}
diff -r 000000000000 -r 0e251e6860c0 mbed.bld --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed.bld Mon May 12 08:24:39 2014 +0000 @@ -0,0 +1,1 @@ +http://mbed.org/users/mbed_official/code/mbed/builds/8e73be2a2ac1 \ No newline at end of file