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:0b798b845ac3, committed 2019-10-14
- Comitter:
- marcospostemsky
- Date:
- Mon Oct 14 02:39:31 2019 +0000
- Child:
- 1:bcfd1e856c37
- Commit message:
- code finished
Changed in this revision
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/MMA8451Q.lib Mon Oct 14 02:39:31 2019 +0000 @@ -0,0 +1,1 @@ +http://mbed.org/users/emilmont/code/MMA8451Q/#c4d879a39775
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp Mon Oct 14 02:39:31 2019 +0000
@@ -0,0 +1,45 @@
+#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;
+#elif defined (TARGET_K20D50M)
+ PinName const SDA = PTB1;
+ PinName const SCL = PTB0;
+#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);
+ PwmOut rled(LED2);
+ PwmOut gled(LED1);
+ PwmOut bled(LED3);
+
+ pc.baud(115200);
+ pc.printf("Acelerometro con FRDM-K64F board.\n");
+
+
+ pc.printf("El acelerometro utilizado se llama MMA8451 con ID: %d\n", acc.getWhoAmI());
+
+ while (true) {
+ float x, y, z;
+ x = abs(acc.getAccX());
+ y = abs(acc.getAccY());
+ z = abs(acc.getAccZ());
+ rled = 1.0f - x;
+ gled = 1.0f - y;
+ bled = 1.0f - z;
+ wait(0.5f);
+ pc.printf("X: %1.2f, Y: %1.2f, Z: %1.2f\n", x, y, z);
+ }
+}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed.bld Mon Oct 14 02:39:31 2019 +0000 @@ -0,0 +1,1 @@ +https://os.mbed.com/users/mbed_official/code/mbed/builds/65be27845400 \ No newline at end of file