LabVIEW Interface for Arduino Discussions

cancel
Showing results for 
Search instead for 
Did you mean: 

Please Help me ! Hall effect sensor

Sorry for my ENGLISH i'm french, i have so much probleme with labview i can't read digital signial, i would like know the speed using a Hall effect sensor connect to arduino

0 Kudos
Message 1 of 28
(14,947 Views)

someone can help me please

0 Kudos
Message 2 of 28
(6,091 Views)

Kinsz,

You're going to have to provide a lot more details on what you are trying to do and what specific questions/problems you have.  The more we know and the more specific your questions are the easier it is for us to help you.

Thanks!

-Sam K

LIFA Developer

Message 3 of 28
(6,091 Views)

I am beginner in labview and I would like to know the speed of a car on a bench speed for this I use a hall effect sensor I want to use labview because it has a very interesting graphical interface (speedometer, graph of acceleration with respect to time).
My sensor operates all or nothing, it is a digital sensor.
Please help me.

0 Kudos
Message 4 of 28
(6,091 Views)

hi friend, the Hall sensor is a sensor that uses the Hall effect to measure magnetic fields or currents or for the determination of position, if current flows and by a Hall sensor approaches a magnetic field flowing in vertical direction the sensor, the sensor projecting creates a voltage proportional to the product of magnetic field strength and current

These electrical units are being introduced to the arduino pin that is if we read a digital value high, sete is interpreted as the presence of a magnetic field, and if the value is under no magnetic field, ie can be connected to a digital or analog pin, if we can only play two digital high and low states, eb change if the range of analog values ​​is greater

When asked about the speed you do, you should refer to that speed the arduino communicates with the computer, Hall sensors are available in different brands either Infineon, Panasonic, etc. http://www.hobbytronics.co.uk/datasheets/A1120EUA-hall-effect-switch.pdf  andunto technical sheet

and a code for the respective tests lucky

const  int hallPin = 12;      / / pin de sensor  hall

const  int ledPin = 13;      / / pin LED

int = 0 hallState ;          

void setup () {

:

  pinMode (ledPin, OUTPUT );     

  pinMode (hallPin, ENTRADA );    

}

void loop ()

{

  hallState =  digitalRead (hallPin);    / / read sensor Hall:

  If (== hallState LOW )

{    

    digitalWrite (ledPin, HIGH ); 

}

  Else

{

    digitalWrite (ledPin, LOW );

  }

}

0 Kudos
Message 5 of 28
(6,091 Views)

Sans titre.png

0 Kudos
Message 6 of 28
(6,091 Views)

It can also serve this link arduino official website, in that code transmits sensor data to the computer

http://playground.arduino.cc/Code/HallEffect

0 Kudos
Message 7 of 28
(6,091 Views)

With Labview I want to see my sensor information to deduce the speed

0 Kudos
Message 8 of 28
(6,091 Views)

The code ARDUINO I have to do tests but I do not like the GUI, that is why I would like to use labview

0 Kudos
Message 9 of 28
(6,091 Views)

MY REFERENCE SENSOR: XS1-N12PA349

This is a digital sensor

0 Kudos
Message 10 of 28
(6,091 Views)