This is the development sandbox for the DRV425EVM and its magnetic sensing.

Dependencies:   mbed

/media/uploads/Krabby127/ohmboyzvectorized.png

Repository for the 2015 OhmBoyZ Capstone group.

Committer:
davidcerrone
Date:
Tue Dec 01 18:26:11 2015 +0000
Revision:
8:b127541c9149
Parent:
7:405e3ff6cbcd
Changed to mV measure

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Krabby127 0:cbee968c2ec3 1 #include "mbed.h"
Krabby127 0:cbee968c2ec3 2 #include <math.h>
Krabby127 0:cbee968c2ec3 3
Krabby127 0:cbee968c2ec3 4 AnalogIn analog_value(A0);
Krabby127 0:cbee968c2ec3 5
Krabby127 0:cbee968c2ec3 6 DigitalOut led(LED1);
Krabby127 0:cbee968c2ec3 7
Krabby127 0:cbee968c2ec3 8 int main() {
Krabby127 0:cbee968c2ec3 9 float meas;
Krabby127 0:cbee968c2ec3 10 float b;
Krabby127 0:cbee968c2ec3 11 printf("\nAnalogIn example\n");
Krabby127 0:cbee968c2ec3 12 while(1) {
Krabby127 0:cbee968c2ec3 13 meas = analog_value.read(); // Converts and read the analog input value (value from 0.0 to 1.0)
Krabby127 0:cbee968c2ec3 14 meas = meas * 3300; // Change the value to be in the 0 to 3300 range (currently to mV)
Krabby127 1:d901038c4bd2 15 printf("meas = %fmV\n\r",meas); // Print out raw measurement in terms of mV
davidcerrone 8:b127541c9149 16 b=((meas-1650)/(4.0*12.2*100.0)); // Based on equation 1
Krabby127 5:760f85b3f309 17 //VVOUT [V] = B × G × RSHUNT × GAMP = B [mT] × 12.2 mA/mT × RSHUNT [Ω] × 4 [V/V]
Krabby127 5:760f85b3f309 18 //0 Tesla is VDD/2
Krabby127 3:7285d6ff672b 19 // 12.2 mA/mT
davidcerrone 7:405e3ff6cbcd 20 printf("b = %f Gauss\n\r",b); // Print out b field measure in milliTesla
davidcerrone 7:405e3ff6cbcd 21 printf("B = %f uT\n\r", b*100.0); // Output B field in micro-Tesla
Krabby127 1:d901038c4bd2 22 if (meas > 2000) { // If the value is greater than 2V then switch the LED on
Krabby127 1:d901038c4bd2 23 // greater than 410 microGauss [40 mT]
Krabby127 0:cbee968c2ec3 24 led = 1;
Krabby127 0:cbee968c2ec3 25 }
Krabby127 0:cbee968c2ec3 26 else {
Krabby127 0:cbee968c2ec3 27 led = 0;
Krabby127 0:cbee968c2ec3 28 }
davidcerrone 8:b127541c9149 29 wait(1); // wait 1 second
Krabby127 0:cbee968c2ec3 30 }
Krabby127 0:cbee968c2ec3 31 }