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.
Diff: FXOS8700CQ.h
- Revision:
- 0:f66eda6a492a
- Child:
- 1:09311e0a2c64
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/FXOS8700CQ.h Tue Jan 31 19:02:23 2017 +0000
@@ -0,0 +1,58 @@
+/* FXOS8700CQ Library
+
+Sample code from ELEC2645 - demonstrates how to create a library
+for the K64F on-board accelerometer and magnetometer
+
+(c) Craig A. Evans, University of Leeds, Jan 2017
+
+*/
+
+#ifndef FXOS8700CQ_H
+#define FXOS8700CQ_H
+
+#include "mbed.h"
+
+// mbed API uses 8-bit addresses so need to left-shift 7-bit addresses by 1
+#define FXOS8700CQ_ADDR (0x1D << 1) // for K64F board
+// values from 13.2 datasheet
+#define FXOS8700CQ_STATUS 0x00
+#define FXOS8700CQ_WHO_AM_I 0x0D
+#define FXOS8700CQ_XYZ_DATA_CFG 0x0E
+#define FXOS8700CQ_CTRL_REG1 0x2A
+#define FXOS8700CQ_M_CTRL_REG1 0x5B
+#define FXOS8700CQ_M_CTRL_REG2 0x5C
+#define FXOS8700CQ_WHO_AM_I_VAL 0xC7
+#define FXOS8700CQ_READ_LEN 13
+
+#define PI 3.14159265359f
+#define RAD2DEG 57.2957795131f
+
+struct Data {
+ float ax;
+ float ay;
+ float az;
+ float mx;
+ float my;
+ float mz;
+};
+
+class FXOS8700CQ
+{
+
+public:
+ FXOS8700CQ(PinName sda, PinName scl);
+ ~FXOS8700CQ();
+ void init();
+ Data get_values();
+ float get_pitch();
+ float get_roll();
+
+private:
+ I2C* i2c;
+
+ void send_byte_to_reg(char byte,char reg);
+ char read_byte_from_reg(char reg);
+ void read_bytes_from_reg(char reg,int number_of_bytes,char bytes[]);
+};
+
+#endif
\ No newline at end of file