

The Kipas DC Keong is a compact and efficient DC fan with a spiral or coiled design, manufactured by Arduino and Raspberry. It is specifically engineered for cooling applications in electronic devices, offering reliable airflow in a small form factor. Its unique design ensures optimal heat dissipation, making it an essential component for maintaining the performance and longevity of electronic systems.








Below are the key technical details for the Kipas DC Keong:
| Parameter | Value |
|---|---|
| Manufacturer | Arduino, Raspberry |
| Part ID | kipas dc |
| Operating Voltage | 5V DC or 12V DC (model-specific) |
| Operating Current | 0.1A to 0.3A |
| Power Consumption | 0.5W to 3.6W |
| Airflow | 5 CFM to 15 CFM |
| Noise Level | ≤ 30 dBA |
| Dimensions | 40mm x 40mm x 20mm |
| Connector Type | 2-pin or 3-pin JST |
| Lifespan | 30,000 hours (typical) |
The Kipas DC Keong typically comes with a 2-pin or 3-pin connector. Below is the pin configuration:
| Pin | Name | Description |
|---|---|---|
| 1 | VCC | Positive power supply (5V/12V) |
| 2 | GND | Ground connection |
| Pin | Name | Description |
|---|---|---|
| 1 | VCC | Positive power supply (5V/12V) |
| 2 | GND | Ground connection |
| 3 | PWM | Pulse-width modulation input for speed control |
Below is an example of how to control the Kipas DC Keong using an Arduino UNO and PWM for speed control:
// Define the PWM pin connected to the fan's PWM input
const int fanPWMPin = 9;
void setup() {
// Set the PWM pin as an output
pinMode(fanPWMPin, OUTPUT);
}
void loop() {
// Set fan speed to 50% (128 out of 255)
analogWrite(fanPWMPin, 128);
delay(5000); // Run at 50% speed for 5 seconds
// Set fan speed to 100% (255 out of 255)
analogWrite(fanPWMPin, 255);
delay(5000); // Run at full speed for 5 seconds
// Turn off the fan (0 out of 255)
analogWrite(fanPWMPin, 0);
delay(5000); // Fan off for 5 seconds
}
Fan Does Not Spin
Excessive Noise or Vibration
Fan Speed Not Controllable
Overheating of Components
Q: Can I use the Kipas DC Keong with a 3.3V power supply?
A: No, the fan is designed for 5V or 12V operation. Using a 3.3V supply may result in insufficient performance or failure to operate.
Q: How do I determine the airflow direction?
A: The airflow direction is typically indicated by an arrow on the fan housing.
Q: Can I use the fan without a PWM signal?
A: Yes, the fan will operate at full speed when the PWM pin is left unconnected or set to a constant HIGH signal.
Q: What is the typical lifespan of the Kipas DC Keong?
A: The fan has a typical lifespan of 30,000 hours under normal operating conditions.