DC Fan 12V (9x9cm)

Apple Shopping Event

Hurry and get discounts on all Apple devices up to 20%

65,00 EGP

14 People watching this product now!

Payment Methods:

Description

Keep your electronics and enclosures cool with this 12V DC brushless cooling fan, sized 90x90mm (9x9cm). A standard size widely used in PC cases, power supply units, network cabinets, 3D printers, and custom electronics enclosures, this fan delivers reliable airflow to prevent heat buildup in continuously running systems.

Built with a brushless DC motor, it offers quiet, efficient operation and a long service life compared to brushed motor fans. The square frame with corner mounting holes fits standard 90mm fan cutouts and enclosures, making installation straightforward. With a simple 2-wire (red/black) connection, it can be wired directly to a 12V power source or connected through a fan header on your control board or PSU.

Whether you’re cooling a PSU, ventilating a control cabinet, adding airflow to a 3D printer enclosure, or building a custom electronics project that runs hot, this 12V 90mm fan provides dependable, continuous cooling in a compact footprint.

Key Features

  • 12V DC Operation – Runs directly off standard 12V rails (PSUs, adapters, batteries)
  • 90x90mm (9x9cm) Size – Standard fan size, compatible with common 90mm cutouts and brackets
  • Brushless Motor – Quiet operation, longer lifespan, and lower power consumption than brushed motors
  • 2-Wire Connection – Simple red (+) / black (–) wiring for easy integration
  • Durable Frame – Sturdy plastic housing built for continuous-duty operation
  • Corner Mounting Holes – Standard 4-hole mounting pattern for secure installation
  • Continuous Airflow – Helps prevent overheating in enclosed electronics, PSUs, and cabinets
  • Wide Compatibility – Ideal for PSUs, PC cases, 3D printers, network cabinets, and DIY builds

Specifications

Specification Detail
Voltage 12V DC
Size 90mm x 90mm x (thickness — confirm with supplier, typically 20-25mm)
Motor Type Brushless DC
Wiring 2-wire (Red: +, Black: –)
Frame Material Plastic (PBT/ABS housing)
Mounting 4 corner mounting holes
Connector Bare wire leads (confirm if connector/header included)
Bearing Type (confirm: sleeve/ball bearing — affects lifespan & noise)
Airflow Direction Standard front-to-back exhaust
Application PSUs, PC cases, 3D printers, network cabinets, industrial enclosures, DIY electronics

Suggested Package Includes

  • 1x DC Cooling Fan (12V, 90x90mm)
🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
Fanto switching transistor/MOSFETfan lead into a transistor/MOSFET switch gated by a board pin
📟
DC Fan 12V (9x9cm)
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
DC Fan 12V (9x9cm) - Arduino Uno
DC Fan 12V (9x9cm) - Arduino Nano
DC Fan 12V (9x9cm) - Arduino Mega
DC Fan 12V (9x9cm) - ESP32
DC Fan 12V (9x9cm) - ESP8266
DC Fan 12V (9x9cm) - STM32
DC Fan 12V (9x9cm) - Raspberry Pi Pico
📄 File: dc_fan_12v_(9x9cm)_-_arduino_uno.inoArduino Uno
460 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Switch through an NPN transistor/MOSFET (never drive a fan straight from a GPIO pin) - PWM pin 9 on Arduino Uno for speed control, or just digitalWrite HIGH/LOW for simple on/off.
6#define FAN_PIN 9
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(FAN_PIN, OUTPUT);
11}
12
13void loop() {
14 analogWrite(FAN_PIN, 180); // ~70% speed
15 delay(5000);
16 analogWrite(FAN_PIN, 0); // off
17 delay(5000);
18}
📄 File: dc_fan_12v_(9x9cm)_-_arduino_nano.inoArduino Nano
461 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Switch through an NPN transistor/MOSFET (never drive a fan straight from a GPIO pin) - PWM pin 9 on Arduino Nano for speed control, or just digitalWrite HIGH/LOW for simple on/off.
6#define FAN_PIN 9
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(FAN_PIN, OUTPUT);
11}
12
13void loop() {
14 analogWrite(FAN_PIN, 180); // ~70% speed
15 delay(5000);
16 analogWrite(FAN_PIN, 0); // off
17 delay(5000);
18}
📄 File: dc_fan_12v_(9x9cm)_-_arduino_mega.inoArduino Mega
461 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Switch through an NPN transistor/MOSFET (never drive a fan straight from a GPIO pin) - PWM pin 9 on Arduino Mega for speed control, or just digitalWrite HIGH/LOW for simple on/off.
6#define FAN_PIN 9
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(FAN_PIN, OUTPUT);
11}
12
13void loop() {
14 analogWrite(FAN_PIN, 180); // ~70% speed
15 delay(5000);
16 analogWrite(FAN_PIN, 0); // off
17 delay(5000);
18}
📄 File: dc_fan_12v_(9x9cm)_-_esp32.inoESP32
456 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Switch through an NPN transistor/MOSFET (never drive a fan straight from a GPIO pin) - PWM pin 25 on ESP32 for speed control, or just digitalWrite HIGH/LOW for simple on/off.
6#define FAN_PIN 25
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(FAN_PIN, OUTPUT);
11}
12
13void loop() {
14 analogWrite(FAN_PIN, 180); // ~70% speed
15 delay(5000);
16 analogWrite(FAN_PIN, 0); // off
17 delay(5000);
18}
📄 File: dc_fan_12v_(9x9cm)_-_esp8266.inoESP8266
458 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Switch through an NPN transistor/MOSFET (never drive a fan straight from a GPIO pin) - PWM pin D1 on ESP8266 for speed control, or just digitalWrite HIGH/LOW for simple on/off.
6#define FAN_PIN D1
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(FAN_PIN, OUTPUT);
11}
12
13void loop() {
14 analogWrite(FAN_PIN, 180); // ~70% speed
15 delay(5000);
16 analogWrite(FAN_PIN, 0); // off
17 delay(5000);
18}
📄 File: dc_fan_12v_(9x9cm)_-_stm32.inoSTM32
458 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Switch through an NPN transistor/MOSFET (never drive a fan straight from a GPIO pin) - PWM pin PA8 on STM32 for speed control, or just digitalWrite HIGH/LOW for simple on/off.
6#define FAN_PIN PA8
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(FAN_PIN, OUTPUT);
11}
12
13void loop() {
14 analogWrite(FAN_PIN, 180); // ~70% speed
15 delay(5000);
16 analogWrite(FAN_PIN, 0); // off
17 delay(5000);
18}
📄 File: dc_fan_12v_(9x9cm)_-_raspberry_pi_pico.inoRaspberry Pi Pico
468 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Switch through an NPN transistor/MOSFET (never drive a fan straight from a GPIO pin) - PWM pin 15 on Raspberry Pi Pico for speed control, or just digitalWrite HIGH/LOW for simple on/off.
6#define FAN_PIN 15
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(FAN_PIN, OUTPUT);
11}
12
13void loop() {
14 analogWrite(FAN_PIN, 180); // ~70% speed
15 delay(5000);
16 analogWrite(FAN_PIN, 0); // off
17 delay(5000);
18}
12V brushed fan.

Specification

Specification

WeightWeight10 g
Dimensions5 × 4 × 2 cm
Dimensions90mm × 90mm × 25mm
Rated Voltage12V DC
Operating Voltage Range7.0V ~ 13.5V DC
Wiring Configuration2-Wire (Red: VCC Positive, Black: GND Negative)
Blade Design7-Blade Impeller
Rated Current0.20A, 200mA
Power Consumption2.4W
Speed2200 RPM ~ 2500 RPM
Airflow40 CFM ~ 45 CFM
Noise Level≤ 32 dBA
Bearing TypeSleeve Bearing, Hydraulic Bearing
Housing MaterialHigh-Density PBT Plastic
Mounting4x Unthreaded Corner Holes
Applications3D Printer Enclosures, PC Case Cooling, Power Supply Replacement Fan, Custom Electronics Cooling

Customer Reviews