reading rpm signal from cpu fan

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

Ok I connected the fans ground to one of the arduinos ground pins and I am still getting noting but random rmp numbers. Did I connect the resistor wrong? Does the sketch look right?

This is how I have it wired currently.

and the 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");

   
};

Ok I finally got this working with the help of a friend. I have posted it on my site Reading PC Fan RPM with an Arduino | The Makers Workbench

//Code by Crenn from thebestcasescenario.com

//Varibles used for calculations
int NbTopsFan; 
int Calc;
char counter;
char flag;
unsigned long time[2];

//The pin location of the sensor
int hallsensor = 2;

//Defines the structure for multiple fans and their dividers
typedef struct{
  char fantype;
  unsigned int fandiv;
}fanspec;

//Definitions of the fans
fanspec fanspace[3]={{0,1},{1,2},{2,8}};

char fan = 0;   //This is the variable used to select the fan and it's divider, set 1 for unipolar hall effect sensor 
               //and 2 for bipolar hall effect sensor 


//This is the function that the interupt calls
void rpm() 
{
   if (counter == 0)
      time[0]=millis();
   if (counter == 100){
      time[1]=millis();
      flag=1;
      cli();            //Disable interrupts
   }
} 

//This is the setup function where the serial port is initialised,
//and the interrupt is attached
void setup() 
{ 
 pinMode(hallsensor, INPUT); 
 Serial.begin(9600); 
 attachInterrupt(0, rpm, RISING); 
} 
void loop () 
{
   NbTopsFan = 0;      //Set NbTops to 0 ready for calculations
   sei();            //Enables interrupts
   while(flag==0);
   flag=0;
   counter=0;
   Calc = (((60*100)/(time[1]-time[0]))/fanspace[fan].fandiv);
   Serial.print (Calc, DEC); //Prints the number calculated above
   Serial.print (" rpm\r\n"); //Prints " rpm" and a new line
}