In the library for Arduino at https://github.com/sparkfun/SparkFun_MM … _Library.h , the following functions return raw data:
// Get X, Y and Z field strengths in a single measurement bool getMeasurementXYZ(uint32_t *x, uint32_t *y, uint32_t *z);
// Read and return the X, Y and Z field strengths bool readFieldsXYZ(uint32_t *x, uint32_t *y, uint32_t *z);
What is actually returned by uint32_t *x, uint32_t *y, uint32_t *z?? I mean: is it voltage, current??
Thanks. AA