

The KIPAS 3 CM is a compact cooling fan designed for efficient airflow in electronic enclosures. It is commonly used to dissipate heat and maintain optimal operating temperatures in various electronic systems. With its small size and reliable performance, the KIPAS 3 CM is ideal for applications such as computer cases, power supplies, and other heat-sensitive electronic devices.








The following table outlines the key technical details of the KIPAS 3 CM cooling fan:
| Parameter | Specification |
|---|---|
| Operating Voltage | 5V DC |
| Current Consumption | 0.15A (150mA) |
| Power Consumption | 0.75W |
| Dimensions | 30mm x 30mm x 10mm |
| Airflow | 5 CFM (Cubic Feet per Minute) |
| Noise Level | 25 dBA |
| Bearing Type | Sleeve Bearing |
| Connector Type | 2-pin JST or bare wires |
| Operating Temperature | -10°C to 70°C |
| Weight | 10 grams |
The KIPAS 3 CM has a simple 2-pin configuration for power input:
| Pin | Wire Color | Description |
|---|---|---|
| 1 | Red | Positive Voltage (VCC) |
| 2 | Black | Ground (GND) |
The following example demonstrates how to control the KIPAS 3 CM using an Arduino UNO and a transistor for on/off control.
// Define the pin connected to the transistor base
const int fanPin = 9;
void setup() {
pinMode(fanPin, OUTPUT); // Set the fan control pin as an output
}
void loop() {
digitalWrite(fanPin, HIGH); // Turn the fan ON
delay(5000); // Keep the fan ON for 5 seconds
digitalWrite(fanPin, LOW); // Turn the fan OFF
delay(5000); // Keep the fan OFF for 5 seconds
}
Fan Does Not Spin
Fan Spins Slowly
Excessive Noise
Fan Stops Intermittently
Q: Can I use the KIPAS 3 CM with a 12V power supply?
A: No, the KIPAS 3 CM is designed for 5V DC operation. Using a 12V power supply may damage the fan.
Q: How do I control the fan speed?
A: You can use PWM (Pulse Width Modulation) with a microcontroller like Arduino to control the fan speed. This requires a transistor or MOSFET for switching.
Q: Is the fan waterproof?
A: No, the KIPAS 3 CM is not waterproof. Avoid exposing it to liquids or high humidity environments.
Q: Can I use the fan for continuous operation?
A: Yes, the KIPAS 3 CM is designed for continuous operation within its specified temperature range.
By following this documentation, you can effectively integrate the KIPAS 3 CM into your electronic projects for reliable cooling performance.