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 Rejestrator
MAG3110/MAG3110.cpp
- Committer:
- Waldek
- Date:
- 2015-04-18
- Revision:
- 0:fa31f8461c63
- Child:
- 1:5ad44a4edff9
File content as of revision 0:fa31f8461c63:
#include "MAG3110.h" #include "mbed.h" /****************************************************************************** * Constructors ******************************************************************************/ MAG3110::MAG3110(PinName sda, PinName scl, int i2c_adr): _i2c(sda, scl), _i2c_address(i2c_adr<<1) { begin(); } void MAG3110::begin() { char cmd[2]; cmd[0] = MAG_CTRL_REG2; cmd[1] = MAG_3110_AUTO_MRST_EN + MAG_3110_MAG_RST; _i2c.write(_i2c_address, cmd, 2); cmd[0] = MAG_CTRL_REG1; cmd[1] = MAG_3110_SAMPLE80 + MAG_3110_OVERSAMPLE4 + MAG_3110_ACTIVE; _i2c.write(_i2c_address, cmd, 2); // No adjustment initially _avgX = 0; _avgY = 0; } // Read a single byte form 8 bit register, return as int int MAG3110::readReg(char regAddr) { char cmd[1]; cmd[0] = regAddr; _i2c.write(_i2c_address, cmd, 1); cmd[0] = 0x00; _i2c.read(_i2c_address, cmd, 1); return (int)( cmd[0]); } // read a register per, pass first reg value, reading 2 bytes increments register // Reads MSB first then LSB int MAG3110::readVal(char regAddr) { char cmd[2]; cmd[0] = regAddr; _i2c.write(_i2c_address, cmd, 1); cmd[0] = 0x00; cmd[1] = 0x00; _i2c.read(_i2c_address, cmd, 2); return (int)( (cmd[1]|(cmd[0] << 8))); //concatenate the MSB and LSB } float MAG3110::getHeading() { int xVal = readVal(MAG_OUT_X_MSB); int yVal = readVal(MAG_OUT_Y_MSB); return (atan2((double)(yVal - _avgY),(double)(xVal - _avgX)))*180/PI; } void MAG3110::getValues(int *xVal, int *yVal, int *zVal) { *xVal = readVal(MAG_OUT_X_MSB); *yVal = readVal(MAG_OUT_Y_MSB); *zVal = readVal(MAG_OUT_Z_MSB); } void MAG3110::setCalibration(int minX, int maxX, int minY, int maxY ) { _avgX=(maxX+minX)/2; _avgY=(maxY+minY)/2; } int8_t MAG3110::getTemperature(void) { return (int8_t)readVal(MAG_DIE_TEMP); }