Dummy commit.
Dependents: iBeacon acnsensa acnSENSA
Fork of ACD52832_LSM9DS1 by
LSM9DS1.h
- Committer:
- jurica238814
- Date:
- 2017-09-26
- Revision:
- 4:a1a57aaacc4c
- Parent:
- 1:45447b012eea
- Child:
- 5:d6a0d907988f
File content as of revision 4:a1a57aaacc4c:
#include "mbed.h" class LSM9DS1{ public: LSM9DS1(I2C *i2c); void startMag(void); void readMag(int16_t *results); void startAcc(void); void readAcc(int16_t *results); void startGyro(void); void readGyro(int16_t *results); private: I2C *_i2c; };