There is a big engine for which I would like to make an RPM Meter with Arduinio...There ia a MAGNETIC PICKUP SENSOR already installed over the flywheel of the engine which has several teeth..I would like to connect this magnetic sensor to the Arduino's interrupt pin..Please tell me how do I connect it..I do not know the exact make and model of the Magnetic Pickup Sensor, but it produces 0.8Volts at 300RPM of the engine.. Is there any need of using an OP AMPLIFIER or I can directly connect the sensor to arduino..??
Ok Joy,
You have more than a few posts to your record so you are a "Newbie-newbie" but some of your comments indicate little experience with electronics. If this is the case, it saves time if you "fess-up" on your first post "I have little or no electronics experience" so we can tailor our answers to suit you so your brain won't explode.
Take the following from your previous post for example:
I found that if the interrupt pin wire is too long it receives a lot of EMI and HV pulses from the surroundings..
The circuit above is using an SCR to pickup only HV pulses as it will be picking pulses from the ignition output..
In my case it is all low voltage ac pulses.. so i think the SCR is not needed..
Here is the actual description from the link you are referring to :
The pickup pulse is applied directly to a SCR (thyristor) that discharges completely the inner capacitor on the SP1, this cause filtered pulses in the line that goes to the SP1 to avoid other short pulses to fire it. The other components placed with the SCR are provided to filter the pickup pulses. Only current pulses should fire SCR. If you place the inductive pickup near a HV cable, it will catch HV pulses, or EMI pulses. This pulses go through the pickup cable to the conditioning circuit as common mode signals (inside the two wires), but are filtered with the 10 nf capacitor and the resistor to prevent the SCR to be fired.
Note this part:
Only current pulses should fire SCR If you place the inductive pickup near a HV cable, it will catch HV pulses, or EMI pulses. These pulses go through the pickup cable to the conditioning circuit as common mode signals (inside the two wires), but are filtered with the 10 nf capacitor and the resistor to prevent the SCR to be fired.
Look at what you wrote (how you misread it)
The circuit above is using an SCR to pickup only HV pulses as it will be picking pulses from the ignition output..
That is not what it says,
It says this:
Only current pulses should fire SCR If you place the inductive pickup near a HV cable, it will catch HV pulses, or EMI pulses.
and goes on to explain what happens to those UNWANTED EMI pulses:
These pulses go through the pickup cable to the conditioning circuit as common mode signals (inside the two wires), but are filtered with the 10 nf capacitor and the resistor to prevent the SCR to be fired.
explaining that the 10nF cap will prevent them from triggering the SCR.
So your statement here:
so i think the SCR is not needed..
is not valid because you do not understand the function of the SCR in this circuit. In this circuit the only function of the SCR is to generate a very brief negative-going trigger pulse for the 555 Timer IC. If you look closely at that schematic you will see the output of the 555 is labeled "To uController" indicating this circuit was designed SPECIFICALLY to generate pulses to be counted by a uController. My point ? Don't make draw conclusions about electronic circuits if you don't know electronics. If you want to know , ask. If you don't know , say so. You're not really qualified to say whether or not the SCR is needed if you don't know what it is doing in the circuit.
Is there any need of using an OP AMPLIFIER or I can directly connect the sensor to arduino..??
No, not necessarily , the circuit we just discussed doesn't use an op amp. I prefer to use op amps whenever possible and there are some that are ideal for use with an arduino (see attached datasheet).
If you want to use an op amp circuit you should have a first stage gain of 3. Coincidently, that's perfect for a Non-Inverting configuration because the gain = (Rf/Ri)+1, so if R f (feedback) = 2 x R i (Input) then the gain = (2/1)+1=3.
The second stage should be an open loop comparator which will convert the sinewave shaped pulse to a squarewave which is better for uC interfacing. Here's an example of a comparator:
[ http://www.circuitstoday.com/op-amp-comparator ](http:// http://www.circuitstoday.com/op-amp-comparator)
Here's an example of an RPM program:
http://arduinoprojects101.com/arduino-rpm-counter-tachometer/
Now this:
I found that if the interrupt pin wire is too long it receives a lot of EMI and HV pulses from the surroundings..
That's because , not being familiar with electronics, you are probably not aware of Inductive or Mutual coupling which is the tendency of signals traveling in UNSHIELDed wire to pick up interference .You need to get some shielded cable from an electronics store. The kind of cable you would ask for would be micro-phone wire cable which is very small diameter , very flexible and shielded. ("2 conductor Shielded microphone cable"). That will prevent the interference you are referring to . Last but not least, The inductive pickup circuit I linked needs to be modified. The input element represented by the coil symbol needs to be replaced by your magnetic pickup and your circuit needs to share a common ground with the arduino. The cathode and anode of the diode in parallel with the 1 k resistor should be your connection points for your magnetic pickup.
LT1215.pdf (339 KB)
op_amp_circuit collection_AN-31.pdf (382 KB)