

The Nidec 24H is a 24V DC brushless fan designed for high efficiency and reliability. It is widely used in cooling applications for electronic devices and systems, ensuring optimal thermal management in a variety of environments. Its brushless design enhances durability and reduces maintenance requirements, making it a preferred choice for industrial, commercial, and consumer electronics.








| Parameter | Value |
|---|---|
| Operating Voltage | 24V DC |
| Operating Voltage Range | 18V - 26V DC |
| Current Consumption | 0.15A (typical) |
| Power Consumption | 3.6W (typical) |
| Speed | 3000 RPM (±10%) |
| Airflow | 50 CFM (Cubic Feet/Minute) |
| Noise Level | 28 dBA |
| Bearing Type | Ball Bearing |
| Dimensions | 80mm x 80mm x 25mm |
| Weight | 120g |
| Connector Type | 3-pin (Power, Ground, Tachometer) |
| Pin Number | Name | Description |
|---|---|---|
| 1 | Power (V+) | Connect to 24V DC power supply |
| 2 | Ground (GND) | Connect to circuit ground |
| 3 | Tachometer | Outputs a pulse signal for speed monitoring |
The Nidec 24H can be connected to an Arduino UNO for speed monitoring using the Tachometer pin. Below is an example code snippet to read the fan speed:
// Arduino code to monitor the speed of the Nidec 24H fan
// The Tachometer pin is connected to Arduino digital pin 2
const int tachPin = 2; // Tachometer signal pin
volatile int pulseCount = 0; // Variable to store pulse count
void setup() {
pinMode(tachPin, INPUT_PULLUP); // Set tachPin as input with pull-up resistor
attachInterrupt(digitalPinToInterrupt(tachPin), countPulse, FALLING);
Serial.begin(9600); // Initialize serial communication
}
void loop() {
delay(1000); // Wait for 1 second
int rpm = (pulseCount / 2) * 60; // Calculate RPM (2 pulses per revolution)
Serial.print("Fan Speed: ");
Serial.print(rpm);
Serial.println(" RPM");
pulseCount = 0; // Reset pulse count for the next measurement
}
void countPulse() {
pulseCount++; // Increment pulse count on each falling edge
}
Fan Does Not Spin
Excessive Noise or Vibration
Tachometer Signal Not Detected
Fan Speed Fluctuates
Can the Nidec 24H operate at 12V?
What is the lifespan of the Nidec 24H?
Can the fan be controlled using PWM?
Is the fan waterproof?