The 25mm Fan 24V is a compact cooling fan designed to operate at 24 volts. It is commonly used for cooling electronic components or small enclosures, ensuring that devices maintain optimal operating temperatures. This fan is ideal for applications where space is limited but efficient cooling is required.
Parameter | Value |
---|---|
Operating Voltage | 24V DC |
Current Rating | 0.1A |
Power Consumption | 2.4W |
Fan Dimensions | 25mm x 25mm x 10mm |
Airflow | 5.5 CFM |
Noise Level | 25 dBA |
Bearing Type | Sleeve Bearing |
Connector Type | 2-pin JST |
Pin Number | Pin Name | Description |
---|---|---|
1 | VCC | Positive power supply (24V) |
2 | GND | Ground |
While the 25mm Fan 24V operates at a higher voltage than the Arduino UNO can directly supply, you can control the fan using a transistor. Below is an example circuit and code to control the fan using an Arduino UNO and an NPN transistor (e.g., 2N2222).
Components Needed:
Connections:
// Define the pin connected to the transistor base
const int fanPin = 9;
void setup() {
// Set the fan pin as an output
pinMode(fanPin, OUTPUT);
}
void loop() {
// Turn the fan on
digitalWrite(fanPin, HIGH);
delay(5000); // Keep the fan on for 5 seconds
// Turn the fan off
digitalWrite(fanPin, LOW);
delay(5000); // Keep the fan off for 5 seconds
}
By following this documentation, users should be able to effectively utilize the 25mm Fan 24V in their projects, ensuring efficient cooling and reliable operation.