reading rpm signal from cpu fan

You should be able to use a simple call to attachInterrupt (see: http://www.arduino.cc/en/Reference/AttachInterrupt), instead of dealing with the registers directly. In this case, the problem is that the code was written for the ATmega8 and you're probably compiling it for the ATmega168 on which the register names have changed. This is exactly the sort of reason we created the attachInterrupt() function - so you're not reliant on the low-level details of the particular microcontroller.

Ok I still can't get this to work on a Diecimila with 0009. Am I calling the interrupt correctly?

volatile int NbTopsFan = 0;
int hallsensor = 3;

void rpm()
{
++NbTopsFan;
}

/***************************************/
void setup()
{
pinMode(hallsensor, INPUT);
Serial.begin(9600);
attachInterrupt(1, rpm, CHANGE);
};

void loop ()
{
NbTopsFan = 0;

delay (1000);
NbTopsFan = NbTopsFan / 2;
Serial.print (" ");
Serial.print (NbTopsFan, DEC);
Serial.print (" rpm");
Serial.print (13, BYTE);

};

Just to add: I have an external 12V powering the PC fan with the Yellow lead (hall effect sensor) going to pin 3. When I open up the serial monitor I get 60 or 61 rpm, even when the fan is full out going (real rpm is somewhere around 7200) or when it's stopped.

Thanks

**exit: had the wrong pin in my wiring explanation

I wrote this a while ago:

http://www.arduino.cc/playground/Main/ReadingRPM

Hope it helps,
-Z-

Thanks I finally got it working ;D

I was missing the 10k resistor and I used the following as code:

volatile byte NbTopsFan;
int hallsensor = 2;

void rpm()
{
NbTopsFan++;
}

/***************************************/
void setup()
{
// pinMode(hallsensor, INPUT);
Serial.begin(9600);
attachInterrupt(0, rpm, RISING);
};

void loop ()
{
NbTopsFan = 0;

delay (1000);
NbTopsFan = NbTopsFan * 30;
Serial.print (" ");
Serial.print (NbTopsFan, DEC);
Serial.print (" rpm");

};

It was a mix of yours and a mix of Benoit's, at least it works, now to get my character LCD to work. On a side note I couldn't get yours to work, in the terminal I would get random numbers regardless if my fan was running or not.

If I am correct, these fans are brushless but using only 2 wires (+5v and ground). Would reading rpm also be possible with a 3 wire brushless motor?

These pc fans have 3 wires, red (12V+), black(GND) and yellow or green (sensor wire). We're taking advantage of the third wire to read the rotations (2 signals per rotation on the yellow wire).

Take a look at the picture that zitron has on the link he posted, it has a 3 wire fan wired up to the arduino.

I don't know of a way to measure the rpm of a 2 wire fan, I don't think you could do it with just the two wires as they do not give any info on rotation or anything else.

IC, but brushless motors work very differently then the motor used in fans: Brushless DC electric motor - Wikipedia

Anyone that can say if it would be possible to measure rpm for brushless motors as described in the link above (using 3 wires)?

From the wiki article:

Consumer devices such as computer hard drives, CD/DVD players, and PC cooling fans use BLDC motors almost exclusively.

The picture they have of the coils is from a PC fan as well.

The third wire I was using was from the hall effect sensor to measure rpm (used in brushless motors to control 'firing'). It sends a pulse twice every rotation on the third wire.

Ok, point taken, but I want to use it with motors used in model aircraft and those motors don't use 1 wire for sensor. All 3 wires are used to turn the motor.

Ok, point taken, but I want to use it with motors used in model aircraft and those motors don't use 1 wire for sensor. All 3 wires are used to turn the motor.

Ha I'm trying to do the same thing. The model airplane motors are synchronous, so the motor controller must know the RPM of the motor through the three wires. It should be possible to find the RPM by checking the pulses on the wires, since that's what controls the motor speed. Wouldn't it be easier to check the RPM with a photo interrupter or a small magnet on the shaft and a hall effect switch?

-Z-

I have been thinking about this a little more and came up with this idea: I think you only have to count pulses on one of the wires. Since there are 3 wires, you can multiply the pulses on one wire and multiply them by 3.

Edit: Now, how to tap into one of the wires. We are talking about 3-20 (and in some cases even more) volts and sometimes high amps.

just thought i would check in to see if any one made progress towards measuring rpm through the pulses.. i am trying to measure RPM's on a mode car using arduino... but the code posted before does not seem to give consistent rpm output...

i am using novak gtb ESC with 7.4v lipo batter to power a 3.5r brushless motor...

any thoughts?

Thank you!

Can someone please post how to connect the RPM wire properly to an arduino duemilanove. I have seen some fuzzy pictures that show a resistor and a led but no description of how to connect them to the arduino. I want to try and get a fan to act as a POV like the harddrive POV.
thanks
demir57

The 10K is a pull up (or down?) resistor, you connect it from the RPM pin to either the positive or negative wire, I can't remember. The LED is just there to show something is happening, you don't need it. The RPM pin goes to interrupt pin on the arduino.

-Z-

I can not get this to work. I have tried 4 different fans including a CPU fan I know has a working RPM sensor. As it is right now the arduino is just printing random RPM numbers out to the serial console. I can stop the fan with my fingers and nothing changes. Disconnecting the fan all together from the arduino makes no change in the serial output.

Here is how I have tings wired up.


And this is the sketch I am using. (found on page 1 of this thread)

volatile byte NbTopsFan;
int hallsensor = 2;

void rpm()
{
 NbTopsFan++;
}


/***************************************/
void setup()
{
// pinMode(hallsensor, INPUT);
 Serial.begin(9600);
 attachInterrupt(0, rpm, RISING);
};

void loop ()
{
   NbTopsFan = 0;
   
   delay (1000);
   NbTopsFan = NbTopsFan * 30;
   Serial.print ("     ");
   Serial.print (NbTopsFan, DEC);
   Serial.print (" rpm");

   
};

Here is how I have tings wired up.

Your drawing shows only a single wire going to the RPM sensor. A circuit requires two wires to make a complete circuit path. You need to wire the circuit common (sometimes called ground) of the fan sensor assembly to a Arduino ground pin.

Think of wiring a simple lamp to a single cell battery, can you do it with just one wire?

Lefty

So I need to wire the ground wire from the fan to the arduino ground? Damn how did I not see that.

darn how did I not see that.

Ah, it comes with experiance grasshopper. :wink:

Thanks for the help!

Just remember that when you want to PWM the pc-fan as well the story changes.

I'm playing with the TOVn interrupt (Interrupt on Bottom) to time when to detect a rising or falling edge on the rpm wire. That is; check if the rpm wire is high/low when there is a high on the pwm pin.

This works fairly well for rpm's above 1000 upto 11000 (didn't test any higher)
Problem is with lower rpm's. The rpm signal doesn't go low enough to sense a low on the arduino.

Hope this helps a little. For a different explanation just ask. The English speaking part of my brain is a bit slow today.

Jeroen