Cirkit Designer Logo
Cirkit Designer
Your all-in-one circuit design IDE
Home / 
Component Documentation

How to Use Fan: Examples, Pinouts, and Specs

Image of Fan
Cirkit Designer LogoDesign with Fan in Cirkit Designer

Introduction

A fan is a device that creates airflow by rotating blades, commonly used for cooling and ventilation in electronic circuits and systems. Fans are essential in maintaining optimal operating temperatures for various electronic components, preventing overheating, and ensuring reliable performance. They are widely used in computer systems, power supplies, and other electronic devices that generate heat during operation.

Explore Projects Built with Fan

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Battery-Powered IR Sensor Controlled Fan with LED Indicator
Image of pollution control on roads: A project utilizing Fan in a practical application
This circuit is a fan control system that uses an IR sensor to detect motion and activate a relay, which in turn powers a fan. The circuit includes a voltage regulator to step down the voltage from a 9V battery to 5V, and an NPN transistor to control the relay coil, with an LED indicator to show the status of the fan.
Cirkit Designer LogoOpen Project in Cirkit Designer
Battery-Powered Fan with Rocker Switch Control
Image of Motion Detector: A project utilizing Fan in a practical application
This circuit consists of a 9V battery powering a fan through a rocker switch. The switch controls the connection between the battery and the fan, allowing the user to turn the fan on and off.
Cirkit Designer LogoOpen Project in Cirkit Designer
Raspberry Pi Pico-Based Smart Fan Controller with Touchscreen Interface
Image of Lueftersteuerung V1: A project utilizing Fan in a practical application
This circuit is an automated fan control system using a Raspberry Pi Pico, which reads temperature and humidity data from an AHT20 sensor and displays information on a Nextion Touch LCD. The system uses a Seeed Mosfet to control a fan based on the sensor data, with a logic level converter to interface between the 3.3V and 5V components, and a DCDC converter to step down voltage from 12V to 5V.
Cirkit Designer LogoOpen Project in Cirkit Designer
IR Sensor-Activated Dual 12V Fans with Relay Control
Image of ajay: A project utilizing Fan in a practical application
This circuit is a motion-activated fan control system. An IR sensor detects motion and activates a 12V relay, which then powers on 12V fans. The system uses a 9V battery for the sensor and relay, and a separate 12V battery for the fans.
Cirkit Designer LogoOpen Project in Cirkit Designer

Explore Projects Built with Fan

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Image of pollution control on roads: A project utilizing Fan in a practical application
Battery-Powered IR Sensor Controlled Fan with LED Indicator
This circuit is a fan control system that uses an IR sensor to detect motion and activate a relay, which in turn powers a fan. The circuit includes a voltage regulator to step down the voltage from a 9V battery to 5V, and an NPN transistor to control the relay coil, with an LED indicator to show the status of the fan.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of Motion Detector: A project utilizing Fan in a practical application
Battery-Powered Fan with Rocker Switch Control
This circuit consists of a 9V battery powering a fan through a rocker switch. The switch controls the connection between the battery and the fan, allowing the user to turn the fan on and off.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of Lueftersteuerung V1: A project utilizing Fan in a practical application
Raspberry Pi Pico-Based Smart Fan Controller with Touchscreen Interface
This circuit is an automated fan control system using a Raspberry Pi Pico, which reads temperature and humidity data from an AHT20 sensor and displays information on a Nextion Touch LCD. The system uses a Seeed Mosfet to control a fan based on the sensor data, with a logic level converter to interface between the 3.3V and 5V components, and a DCDC converter to step down voltage from 12V to 5V.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of ajay: A project utilizing Fan in a practical application
IR Sensor-Activated Dual 12V Fans with Relay Control
This circuit is a motion-activated fan control system. An IR sensor detects motion and activates a 12V relay, which then powers on 12V fans. The system uses a 9V battery for the sensor and relay, and a separate 12V battery for the fans.
Cirkit Designer LogoOpen Project in Cirkit Designer

Technical Specifications

Key Technical Details

Parameter Value
Voltage Rating 5V, 12V, 24V
Current Rating 0.1A to 1A
Power Rating 0.5W to 12W
Speed 1000 RPM to 5000 RPM
Airflow 10 CFM to 100 CFM
Noise Level 20 dBA to 40 dBA
Bearing Type Sleeve, Ball, Fluid Dynamic
Connector Type 2-pin, 3-pin, 4-pin

Pin Configuration and Descriptions

2-Pin Fan

Pin Number Name Description
1 VCC Positive power supply
2 GND Ground

3-Pin Fan

Pin Number Name Description
1 VCC Positive power supply
2 GND Ground
3 TACH Tachometer signal (RPM)

4-Pin Fan

Pin Number Name Description
1 VCC Positive power supply
2 GND Ground
3 TACH Tachometer signal (RPM)
4 PWM Pulse Width Modulation

Usage Instructions

How to Use the Fan in a Circuit

  1. Power Supply Connection:

    • Connect the VCC pin of the fan to the positive terminal of the power supply.
    • Connect the GND pin of the fan to the ground terminal of the power supply.
  2. Control and Monitoring:

    • For 3-pin fans, connect the TACH pin to a microcontroller or monitoring system to read the fan's RPM.
    • For 4-pin fans, connect the PWM pin to a PWM-capable microcontroller pin to control the fan speed.

Important Considerations and Best Practices

  • Voltage Compatibility: Ensure the fan's voltage rating matches the power supply voltage.
  • Current Rating: Verify that the power supply can provide sufficient current for the fan.
  • Mounting: Securely mount the fan to avoid vibrations and noise.
  • Airflow Direction: Install the fan in the correct orientation to ensure proper airflow.
  • PWM Control: Use appropriate PWM frequencies (typically 25kHz) for smooth fan speed control.

Example: Connecting a 4-Pin Fan to an Arduino UNO

Circuit Diagram

Arduino UNO       4-Pin Fan
-----------       ---------
5V  -----------   VCC
GND -----------   GND
D3  -----------   PWM
D2  -----------   TACH

Arduino Code

// Define pin connections
const int fanPWM = 3; // PWM control pin
const int fanTACH = 2; // Tachometer pin

void setup() {
  pinMode(fanPWM, OUTPUT); // Set PWM pin as output
  pinMode(fanTACH, INPUT); // Set TACH pin as input
  Serial.begin(9600); // Initialize serial communication
}

void loop() {
  analogWrite(fanPWM, 128); // Set fan speed to 50% duty cycle

  // Read and print fan RPM
  int rpm = readFanRPM();
  Serial.print("Fan RPM: ");
  Serial.println(rpm);

  delay(1000); // Wait for 1 second
}

int readFanRPM() {
  // Function to read fan RPM from TACH pin
  // Implementation depends on fan specifications
  // and may require additional circuitry
  return 0; // Placeholder value
}

Troubleshooting and FAQs

Common Issues Users Might Face

  1. Fan Not Spinning:

    • Solution: Check power supply connections and ensure the voltage matches the fan's rating.
  2. Fan Speed Not Controllable:

    • Solution: Verify PWM signal connection and ensure the microcontroller pin supports PWM.
  3. High Noise Levels:

    • Solution: Ensure the fan is securely mounted and check for any obstructions in the airflow path.
  4. Incorrect RPM Readings:

    • Solution: Verify the TACH pin connection and ensure the microcontroller is correctly reading the signal.

FAQs

  1. Can I use a 12V fan with a 5V power supply?

    • No, using a 12V fan with a 5V power supply will result in insufficient voltage, causing the fan to underperform or not spin at all.
  2. How do I control the fan speed using PWM?

    • Connect the PWM pin of the fan to a PWM-capable microcontroller pin and use the analogWrite function to set the desired duty cycle.
  3. What is the purpose of the TACH pin?

    • The TACH pin provides a tachometer signal that can be used to monitor the fan's RPM, allowing for precise speed control and monitoring.
  4. Can I use a 3-pin fan with a 4-pin connector?

    • Yes, you can connect a 3-pin fan to a 4-pin connector by leaving the PWM pin unconnected. The fan will run at full speed.

By following this documentation, users can effectively integrate and utilize fans in their electronic circuits and systems, ensuring optimal cooling and performance.