Cooling Fan 5Vdc Size 50x50x10mm

Apple Shopping Event

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

50,00 EGP

9 People watching this product now!

Payment Methods:

Description

 

The Cooling Fan 5Vdc, Size 50x50x10mm is a small, low-voltage fan designed to efficiently cool electronic components and devices that require minimal power consumption. With its compact size of 50mm x 50mm x 10mm, this fan is ideal for cooling applications where space is limited, such as in Raspberry Pi projects, small computer systems, and embedded electronics.

Key Features:

  • Voltage: 5V DC, perfect for use with 5V-powered devices or low-power electronics.
  • Size: 50x50x10mm, a compact form factor that fits into tight spaces without compromising airflow.
  • Low Power Consumption: Operates efficiently with minimal energy usage, making it ideal for battery-operated systems.
  • Airflow: Provides effective cooling to prevent overheating in small-scale electronic components.
  • Quiet Operation: Designed to operate with low noise levels, making it suitable for quiet environments or where noise reduction is important.
  • Durability: Built with quality materials to ensure long-lasting performance and reliability.

This 5V cooling fan is perfect for cooling small circuit boards, microcontrollers, or any device where keeping temperatures low is critical for performance and longevity. Its quiet operation and low energy consumption make it a great choice for portable or battery-powered applications.

🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
Fanto switching transistorfan lead into a transistor/MOSFET switch gated by a board pin
📟
Cooling Fan 5Vdc Size 50x50x10mm
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
Cooling Fan 5Vdc Size 50x50x10mm - Arduino Uno
Cooling Fan 5Vdc Size 50x50x10mm - Arduino Nano
Cooling Fan 5Vdc Size 50x50x10mm - Arduino Mega
Cooling Fan 5Vdc Size 50x50x10mm - ESP32
Cooling Fan 5Vdc Size 50x50x10mm - ESP8266
Cooling Fan 5Vdc Size 50x50x10mm - STM32
Cooling Fan 5Vdc Size 50x50x10mm - Raspberry Pi Pico
📄 File: cooling_fan_5vdc_size_50x50x10mm_-_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: cooling_fan_5vdc_size_50x50x10mm_-_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: cooling_fan_5vdc_size_50x50x10mm_-_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: cooling_fan_5vdc_size_50x50x10mm_-_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: cooling_fan_5vdc_size_50x50x10mm_-_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: cooling_fan_5vdc_size_50x50x10mm_-_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: cooling_fan_5vdc_size_50x50x10mm_-_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}
Small 5V brushed fan.

Specification

Specification

WeightWeight40 g
Dimensions5 × 5 × 1 cm
Product NameCooling Fan 5VDC 50x50x10 mm
Fan TypeDC Cooling Fan
Rated Voltage5V DC
Size50x50x10 mm
Bearing TypeSleeve Bearing
Connector Type2-Wire
AirflowHigh Airflow
Noise LevelLow Noise
MaterialPlastic
ApplicationCooling Electronics, Power Supplies, DIY Projects

Customer Reviews