ESC (Speed Controller for Brushless Motor) 30A with Motor Connectors

  • 30A current rating for brushless motors
  • Pre-installed motor connectors for easy setup
  • Supports smooth and precise speed control
  • Compatible with LiPo batteries
  • Built-in overcurrent and thermal protection
  • High efficiency with stable performance
  • Ideal for drones, RC cars, and DIY projects
SKU: EK1903 Category: Tag:

Apple Shopping Event

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

500,00 EGP

16 People watching this product now!

Payment Methods:

Description

🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
ESCSignal/VCC/GNDboard PWM-capable pin / (BEC 5V out - don't also power the board from it unless you know what you're doing) / GND
📟
ESC (Speed Controller for Brushless Motor) 30A with Motor Connectors
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
ESC (Speed Controller for Brushless Motor) 30A with Motor Connectors - Arduino Uno
ESC (Speed Controller for Brushless Motor) 30A with Motor Connectors - Arduino Nano
ESC (Speed Controller for Brushless Motor) 30A with Motor Connectors - Arduino Mega
ESC (Speed Controller for Brushless Motor) 30A with Motor Connectors - ESP32
ESC (Speed Controller for Brushless Motor) 30A with Motor Connectors - ESP8266
ESC (Speed Controller for Brushless Motor) 30A with Motor Connectors - STM32
ESC (Speed Controller for Brushless Motor) 30A with Motor Connectors - Raspberry Pi Pico
📄 File: esc_(speed_controller_for_brushless_motor)_30a_with_motor_connectors_-_arduino_uno.inoArduino Uno
702 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// ESC signal pin 9 on Arduino Uno. ESCs speak the same protocol as a hobby servo (1000-2000us pulses), so the Servo library works even though there's no rotation involved.
6#include <Servo.h>
7
8Servo esc;
9#define ESC_PIN 9
10
11void setup() {
12 Serial.begin(115200);
13 esc.attach(ESC_PIN, 1000, 2000);
14 esc.writeMicroseconds(1000); // arm at minimum throttle - required by most ESCs before they'll accept commands
15 delay(3000);
16}
17
18void loop() {
19 esc.writeMicroseconds(1300); // low throttle - INCREASE GRADUALLY AND CAREFULLY with a real propeller attached
20 delay(2000);
21 esc.writeMicroseconds(1000); // back to minimum
22 delay(2000);
23}
📄 File: esc_(speed_controller_for_brushless_motor)_30a_with_motor_connectors_-_arduino_nano.inoArduino Nano
703 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// ESC signal pin 9 on Arduino Nano. ESCs speak the same protocol as a hobby servo (1000-2000us pulses), so the Servo library works even though there's no rotation involved.
6#include <Servo.h>
7
8Servo esc;
9#define ESC_PIN 9
10
11void setup() {
12 Serial.begin(115200);
13 esc.attach(ESC_PIN, 1000, 2000);
14 esc.writeMicroseconds(1000); // arm at minimum throttle - required by most ESCs before they'll accept commands
15 delay(3000);
16}
17
18void loop() {
19 esc.writeMicroseconds(1300); // low throttle - INCREASE GRADUALLY AND CAREFULLY with a real propeller attached
20 delay(2000);
21 esc.writeMicroseconds(1000); // back to minimum
22 delay(2000);
23}
📄 File: esc_(speed_controller_for_brushless_motor)_30a_with_motor_connectors_-_arduino_mega.inoArduino Mega
703 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// ESC signal pin 9 on Arduino Mega. ESCs speak the same protocol as a hobby servo (1000-2000us pulses), so the Servo library works even though there's no rotation involved.
6#include <Servo.h>
7
8Servo esc;
9#define ESC_PIN 9
10
11void setup() {
12 Serial.begin(115200);
13 esc.attach(ESC_PIN, 1000, 2000);
14 esc.writeMicroseconds(1000); // arm at minimum throttle - required by most ESCs before they'll accept commands
15 delay(3000);
16}
17
18void loop() {
19 esc.writeMicroseconds(1300); // low throttle - INCREASE GRADUALLY AND CAREFULLY with a real propeller attached
20 delay(2000);
21 esc.writeMicroseconds(1000); // back to minimum
22 delay(2000);
23}
📄 File: esc_(speed_controller_for_brushless_motor)_30a_with_motor_connectors_-_esp32.inoESP32
698 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// ESC signal pin 25 on ESP32. ESCs speak the same protocol as a hobby servo (1000-2000us pulses), so the Servo library works even though there's no rotation involved.
6#include <Servo.h>
7
8Servo esc;
9#define ESC_PIN 25
10
11void setup() {
12 Serial.begin(115200);
13 esc.attach(ESC_PIN, 1000, 2000);
14 esc.writeMicroseconds(1000); // arm at minimum throttle - required by most ESCs before they'll accept commands
15 delay(3000);
16}
17
18void loop() {
19 esc.writeMicroseconds(1300); // low throttle - INCREASE GRADUALLY AND CAREFULLY with a real propeller attached
20 delay(2000);
21 esc.writeMicroseconds(1000); // back to minimum
22 delay(2000);
23}
📄 File: esc_(speed_controller_for_brushless_motor)_30a_with_motor_connectors_-_esp8266.inoESP8266
700 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// ESC signal pin D1 on ESP8266. ESCs speak the same protocol as a hobby servo (1000-2000us pulses), so the Servo library works even though there's no rotation involved.
6#include <Servo.h>
7
8Servo esc;
9#define ESC_PIN D1
10
11void setup() {
12 Serial.begin(115200);
13 esc.attach(ESC_PIN, 1000, 2000);
14 esc.writeMicroseconds(1000); // arm at minimum throttle - required by most ESCs before they'll accept commands
15 delay(3000);
16}
17
18void loop() {
19 esc.writeMicroseconds(1300); // low throttle - INCREASE GRADUALLY AND CAREFULLY with a real propeller attached
20 delay(2000);
21 esc.writeMicroseconds(1000); // back to minimum
22 delay(2000);
23}
📄 File: esc_(speed_controller_for_brushless_motor)_30a_with_motor_connectors_-_stm32.inoSTM32
700 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// ESC signal pin PA8 on STM32. ESCs speak the same protocol as a hobby servo (1000-2000us pulses), so the Servo library works even though there's no rotation involved.
6#include <Servo.h>
7
8Servo esc;
9#define ESC_PIN PA8
10
11void setup() {
12 Serial.begin(115200);
13 esc.attach(ESC_PIN, 1000, 2000);
14 esc.writeMicroseconds(1000); // arm at minimum throttle - required by most ESCs before they'll accept commands
15 delay(3000);
16}
17
18void loop() {
19 esc.writeMicroseconds(1300); // low throttle - INCREASE GRADUALLY AND CAREFULLY with a real propeller attached
20 delay(2000);
21 esc.writeMicroseconds(1000); // back to minimum
22 delay(2000);
23}
📄 File: esc_(speed_controller_for_brushless_motor)_30a_with_motor_connectors_-_raspberry_pi_pico.inoRaspberry Pi Pico
710 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// ESC signal pin 15 on Raspberry Pi Pico. ESCs speak the same protocol as a hobby servo (1000-2000us pulses), so the Servo library works even though there's no rotation involved.
6#include <Servo.h>
7
8Servo esc;
9#define ESC_PIN 15
10
11void setup() {
12 Serial.begin(115200);
13 esc.attach(ESC_PIN, 1000, 2000);
14 esc.writeMicroseconds(1000); // arm at minimum throttle - required by most ESCs before they'll accept commands
15 delay(3000);
16}
17
18void loop() {
19 esc.writeMicroseconds(1300); // low throttle - INCREASE GRADUALLY AND CAREFULLY with a real propeller attached
20 delay(2000);
21 esc.writeMicroseconds(1000); // back to minimum
22 delay(2000);
23}
Electronic speed controller for brushless motors - controlled via a standard hobby-servo PWM signal.

نظرة عامة ومواصفات المنتج — بالعربية

ESC (Speed Controller for Brushless Motor) 30A with Motor Connectors متوفر الآن في متجر إكوسترا للإلكترونيات، ضمن قسم Motors | Drivers | Pumps | Actuators، بسعر 500,00 EGP. كود المنتج لدينا: EK1903. المنتج متوفر في المخزون وجاهز للشحن الفوري لكل محافظات مصر مع إمكانية الدفع عند الاستلام.

أهم المواصفات الفنية:

  • Product Name: ESC (Speed Controller for Brushless Motor) 30A with Motor Connectors
  • Controller Type: Brushless Motor Electronic Speed Controller (ESC)
  • Continuous Current: 30A
  • Burst Current: Up to 40A
  • Input Voltage: 7.4V – 14.8V (2–4S Li-Po)
  • Bec Output: 5V / 2A
  • Motor Type: Brushless DC (BLDC)
  • Signal Type: PWM

منتج أصلي بجودة مضمونة من إكوسترا، مع دعم فني ومتابعة بعد البيع لكل عملائنا في مصر.

تصفّح المزيد من Motors | Drivers | Pumps | Actuators في إكوسترا.

Specification

Specification

WeightWeight10 g
Dimensions6 × 2,5 × 1 cm
Product NameESC (Speed Controller for Brushless Motor) 30A with Motor Connectors
Controller TypeBrushless Motor Electronic Speed Controller (ESC)
Continuous Current30A
Burst CurrentUp to 40A
Input Voltage7.4V – 14.8V (2–4S Li-Po)
BEC Output5V / 2A
Motor TypeBrushless DC (BLDC)
Signal TypePWM
Motor ConnectorsPre-Soldered
Battery ConnectorIncluded
Cooling MethodPassive Cooling
Protection FeaturesOvercurrent, Overheating
ApplicationRC Cars, Drones, Robotics, Brushless Motor Control

Customer Reviews