04-14-2013 03:18 AM
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
04-14-2013 05:29 AM
someone can help me please
04-14-2013 09:21 AM
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
04-14-2013 09:59 AM
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.
04-14-2013 10:33 AM
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 );
}
}
04-14-2013 10:34 AM

04-14-2013 10:37 AM
It can also serve this link arduino official website, in that code transmits sensor data to the computer
04-14-2013 10:43 AM
With Labview I want to see my sensor information to deduce the speed
04-14-2013 10:46 AM
The code ARDUINO I have to do tests but I do not like the GUI, that is why I would like to use labview
04-14-2013 10:49 AM
MY REFERENCE SENSOR: XS1-N12PA349
This is a digital sensor