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.
Dependencies: mbed-os FXAS21000 FXOS8700Q
Diff: main.cpp
- Revision:
- 0:838685d68d89
- Child:
- 1:7a49fd0692fd
diff -r 000000000000 -r 838685d68d89 main.cpp
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp Fri Jan 15 22:11:19 2021 +0000
@@ -0,0 +1,43 @@
+#include "mbed.h"
+#include "FXOS8700Q.h"
+#include "FXAS21000.h"
+ I2C i2c(PTE25, PTE24);
+ Serial pc(USBTX,USBRX);
+ FXOS8700QAccelerometer acc(i2c, FXOS8700CQ_SLAVE_ADDR1); // Configured for the FRDM-K64F with onboard sensors
+ FXOS8700QMagnetometer mag(i2c, FXOS8700CQ_SLAVE_ADDR1);
+ FXAS21000 gyro(D14,D15);
+ int main(void)
+ {
+ float gyro_data[3];
+ motion_data_units_t acc_data, mag_data;
+ motion_data_counts_t acc_raw, mag_raw;
+ float faX, faY, faZ, fmX, fmY, fmZ, tmp_float;
+ int16_t raX, raY, raZ, rmX, rmY, rmZ, tmp_int;
+ acc.enable();
+ mag.enable();
+ while (true) {
+ // counts based results
+ acc.getAxis(acc_raw);
+ mag.getAxis(mag_raw);
+ acc.getX(raX);
+ acc.getY(raY);
+ acc.getZ(raZ);
+ mag.getX(rmX);
+ mag.getY(rmY);
+ mag.getZ(rmZ);
+ // unit based results
+ acc.getAxis(acc_data);
+ mag.getAxis(mag_data);
+ acc.getX(faX);
+ acc.getY(faY);
+ acc.getZ(faZ);
+ mag.getX(fmX);
+ mag.getY(fmY);
+ mag.getZ(fmZ);
+ pc.printf("FXOSQ8700Q ACC: X=%1.4fY=%1.4fZ=%1.4f", acc.getX(faX),acc.getY(faY),acc.getZ(faZ));
+ pc.printf(" MAG: X=%4.1fY=%4.1fZ=%4.1f\r\n", mag.getX(fmX),mag.getY(fmY), mag.getZ(fmZ));
+ gyro.ReadXYZ(gyro_data);
+ pc.printf("FXAS21000 Gyro: X=%6.2fY=%6.2fZ=%6.2f\r\n", gyro_data[0],gyro_data[1], gyro_data[2]);
+ wait(1.0f);
+ }
+ }
\ No newline at end of file