Mini 5A PWM DC Motor Speed Controller – 3V-35V, 90W Max, LED Dimmer

  • Input Voltage Range: 3V to 35V DC
  • Max Output Power: Up to 90W
  • Current Capacity: Up to 5A continuous
  • PWM Control for precise speed and brightness adjustment
  • Compact Design suitable for DC motors, fans, and LED dimming projects

Apple Shopping Event

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

85,00 EGP

16 People watching this product now!

Payment Methods:

Description

The Mini 5A PWM DC Motor Speed Controller is a compact and efficient module designed to control the speed of DC motors or brightness of LEDs using Pulse Width Modulation (PWM). It supports input voltages from 3V to 35V, handles up to 5A of current, and can deliver up to 90W of power, making it ideal for small motorized projects, fans, pumps, and LED dimming.

Key Features:

  • Wide voltage range: 3V to 35V DC

  • Max output current: 5A (with heatsink)

  • Power output: up to 90W

  • High-efficiency PWM control for motor speed or LED brightness

  • Compact size with onboard knob for easy adjustment


Specifications:

Feature Details
Input Voltage 3V–35V DC
Max Output Current 5A (with proper cooling)
Max Power 90W
Control Method PWM (Pulse Width Modulation)
PWM Frequency 13kHz (typical)
Duty Cycle Range 0%–100%
Adjustment Rotary potentiometer knob
Application DC motor speed control, LED dimming, fans, pumps
Board Size Approx. 32mm x 32mm x 15mm
🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
Speed ControllerPWM inboard PWM pin
📟
Mini 5A PWM DC Motor Speed Controller - 3V-35V, 90W Max, LED Dimmer
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
Mini 5A PWM DC Motor Speed Controller - 3V-35V, 90W Max, LED Dimmer - Arduino Uno
Mini 5A PWM DC Motor Speed Controller - 3V-35V, 90W Max, LED Dimmer - Arduino Nano
Mini 5A PWM DC Motor Speed Controller - 3V-35V, 90W Max, LED Dimmer - Arduino Mega
Mini 5A PWM DC Motor Speed Controller - 3V-35V, 90W Max, LED Dimmer - ESP32
Mini 5A PWM DC Motor Speed Controller - 3V-35V, 90W Max, LED Dimmer - ESP8266
Mini 5A PWM DC Motor Speed Controller - 3V-35V, 90W Max, LED Dimmer - STM32
Mini 5A PWM DC Motor Speed Controller - 3V-35V, 90W Max, LED Dimmer - Raspberry Pi Pico
📄 File: mini_5a_pwm_dc_motor_speed_controller_-_3v-35v,_90w_max,_led_dimmer_-_arduino_uno.inoArduino Uno
376 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// PWM pin 9 on Arduino Uno
6#define PWM_PIN 9
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(PWM_PIN, OUTPUT);
11}
12
13void loop() {
14 for (int speed = 0; speed <= 255; speed += 5) { analogWrite(PWM_PIN, speed); delay(30); }
15 for (int speed = 255; speed >= 0; speed -= 5) { analogWrite(PWM_PIN, speed); delay(30); }
16}
📄 File: mini_5a_pwm_dc_motor_speed_controller_-_3v-35v,_90w_max,_led_dimmer_-_arduino_nano.inoArduino Nano
377 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// PWM pin 9 on Arduino Nano
6#define PWM_PIN 9
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(PWM_PIN, OUTPUT);
11}
12
13void loop() {
14 for (int speed = 0; speed <= 255; speed += 5) { analogWrite(PWM_PIN, speed); delay(30); }
15 for (int speed = 255; speed >= 0; speed -= 5) { analogWrite(PWM_PIN, speed); delay(30); }
16}
📄 File: mini_5a_pwm_dc_motor_speed_controller_-_3v-35v,_90w_max,_led_dimmer_-_arduino_mega.inoArduino Mega
377 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// PWM pin 9 on Arduino Mega
6#define PWM_PIN 9
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(PWM_PIN, OUTPUT);
11}
12
13void loop() {
14 for (int speed = 0; speed <= 255; speed += 5) { analogWrite(PWM_PIN, speed); delay(30); }
15 for (int speed = 255; speed >= 0; speed -= 5) { analogWrite(PWM_PIN, speed); delay(30); }
16}
📄 File: mini_5a_pwm_dc_motor_speed_controller_-_3v-35v,_90w_max,_led_dimmer_-_esp32.inoESP32
372 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// PWM pin 25 on ESP32
6#define PWM_PIN 25
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(PWM_PIN, OUTPUT);
11}
12
13void loop() {
14 for (int speed = 0; speed <= 255; speed += 5) { analogWrite(PWM_PIN, speed); delay(30); }
15 for (int speed = 255; speed >= 0; speed -= 5) { analogWrite(PWM_PIN, speed); delay(30); }
16}
📄 File: mini_5a_pwm_dc_motor_speed_controller_-_3v-35v,_90w_max,_led_dimmer_-_esp8266.inoESP8266
374 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// PWM pin D1 on ESP8266
6#define PWM_PIN D1
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(PWM_PIN, OUTPUT);
11}
12
13void loop() {
14 for (int speed = 0; speed <= 255; speed += 5) { analogWrite(PWM_PIN, speed); delay(30); }
15 for (int speed = 255; speed >= 0; speed -= 5) { analogWrite(PWM_PIN, speed); delay(30); }
16}
📄 File: mini_5a_pwm_dc_motor_speed_controller_-_3v-35v,_90w_max,_led_dimmer_-_stm32.inoSTM32
374 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// PWM pin PA8 on STM32
6#define PWM_PIN PA8
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(PWM_PIN, OUTPUT);
11}
12
13void loop() {
14 for (int speed = 0; speed <= 255; speed += 5) { analogWrite(PWM_PIN, speed); delay(30); }
15 for (int speed = 255; speed >= 0; speed -= 5) { analogWrite(PWM_PIN, speed); delay(30); }
16}
📄 File: mini_5a_pwm_dc_motor_speed_controller_-_3v-35v,_90w_max,_led_dimmer_-_raspberry_pi_pico.inoRaspberry Pi Pico
384 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// PWM pin 15 on Raspberry Pi Pico
6#define PWM_PIN 15
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(PWM_PIN, OUTPUT);
11}
12
13void loop() {
14 for (int speed = 0; speed <= 255; speed += 5) { analogWrite(PWM_PIN, speed); delay(30); }
15 for (int speed = 255; speed >= 0; speed -= 5) { analogWrite(PWM_PIN, speed); delay(30); }
16}
Single-direction PWM speed controller (no direction reversal, just speed via one PWM input).

Specification

Specification

WeightWeight40 g
Dimensions4 × 3 × 3 cm
Product NameMini 5A PWM DC Motor Speed Controller – 3V-35V, 90W Max, LED Dimmer
TypePWM DC Motor Speed Controller / LED Dimmer
Operating Voltage3V – 35V DC
Maximum Current5A
Maximum Power90W
Control MethodPWM (Pulse Width Modulation)
Adjustable Speed/DimYes, via potentiometer knob
EfficiencyHigh-efficiency switching design
Input ProtectionReverse polarity protection
OutputDC motor speed control / LED brightness control
DimensionsApprox. 55 × 30 × 18 mm
Weight~40 g
MaterialPCB board with heat-resistant components
ColorGreen PCB

Customer Reviews