ESC 30A Brushless Speed Controller

  • 30A continuous / 40A burst current

  • Supports 2–4S LiPo or 5–12 cell NiMH/NiCd

  • Built-in 5V/2A BEC

  • Pre-soldered T-type (Deans) and 3.5mm bullet connectors

  • Programmable brake, timing, and voltage cutoff

  • Overheat, signal loss, and low voltage protection

  • Smooth throttle response and easy calibration

SKU: EK1816 Categories: , Tags: ,

Apple Shopping Event

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

475,00 EGP

16 People watching this product now!

Payment Methods:

Description

Description:
This 30A Electronic Speed Controller (ESC) is designed to provide reliable and efficient power control for brushless DC motors in a variety of RC (Radio Control) applications. It’s an essential component for RC airplanes, multirotors (drones), helicopters, and some smaller RC cars or boats. Featuring a pre-soldered T-Type (Deans compatible) battery connector for secure power input and 3.5mm bullet connectors for easy motor connection, this ESC is ready for quick installation. It typically includes a built-in BEC (Battery Eliminator Circuit) to power your receiver and servos directly from the main flight battery, simplifying your wiring setup. With programmable settings and multiple protection features, this ESC offers a balance of performance, safety, and ease of use for hobbyists.

Short Specifications:

  • Continuous Current: 30A

  • Burst Current: 40A (for up to 10 seconds)

  • Input Voltage: 2-4S LiPo (Lithium Polymer) / 5-12 cells NiMH/NiCd

  • BEC Output: 5V / 2A (Typical, may be Linear or Switching depending on specific model)

  • Battery Connector: T-Type (Deans Compatible), pre-soldered

  • Motor Connectors: 3 x 3.5mm Female Bullet Connectors, pre-soldered

  • Programming: Yes (Typically via transmitter stick movements or optional programming card)

  • Dimensions: (Varies, e.g., approx. 45mm x 24mm x 11mm – excluding wires)

  • Weight: (Varies, e.g., approx. 25g – including wires and connectors)

Features:

  • Reliable Performance: Delivers consistent power output for smooth motor operation.

  • Pre-Soldered Connectors: Comes with a T-Type battery connector and 3.5mm motor bullet connectors installed for convenient plug-and-play setup.

  • Built-in BEC: Provides regulated 5V power to the RC receiver and servos, eliminating the need for a separate receiver battery.

  • Programmable Settings: Allows customization of parameters such as:

    • Brake (On/Off)

    • Battery Type (LiPo / NiMH)

    • Low Voltage Cutoff (LVC) Mode & Threshold

    • Timing Settings (to optimize for different motor types)

    • Start Mode (Soft / Normal / Very Soft)

  • Multiple Protection Features:

    • Low Voltage Cutoff Protection: Prevents over-discharge of LiPo batteries.

    • Over-Heat Protection: Reduces power output or shuts down if ESC temperature gets too high.

    • Throttle Signal Loss Protection: Safely shuts down the motor if the radio signal is lost.

  • Smooth & Linear Throttle Response: Ensures precise control over motor speed.

  • High-Efficiency MOSFETs: Utilizes quality components for better efficiency and reduced heat generation.

  • Easy Throttle Range Calibration: Simple procedure to match the ESC to your transmitter’s throttle range for optimal performance.

  • Compact & Lightweight Design: Suitable for applications where space and weight are considerations.

🔌
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 30A Brushless Speed Controller
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
ESC 30A Brushless Speed Controller - Arduino Uno
ESC 30A Brushless Speed Controller - Arduino Nano
ESC 30A Brushless Speed Controller - Arduino Mega
ESC 30A Brushless Speed Controller - ESP32
ESC 30A Brushless Speed Controller - ESP8266
ESC 30A Brushless Speed Controller - STM32
ESC 30A Brushless Speed Controller - Raspberry Pi Pico
📄 File: esc_30a_brushless_speed_controller_-_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_30a_brushless_speed_controller_-_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_30a_brushless_speed_controller_-_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_30a_brushless_speed_controller_-_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_30a_brushless_speed_controller_-_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_30a_brushless_speed_controller_-_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_30a_brushless_speed_controller_-_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 30A Brushless Speed Controller متوفر الآن في متجر إكوسترا للإلكترونيات، ضمن قسم Drone Motor وMotors | Drivers، بسعر 475,00 EGP. كود المنتج لدينا: EK1816. المنتج غير متوفر حالياً — تواصل معنا عبر واتساب لمعرفة موعد توفره القادم.

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

  • Continuous Current: 30A
  • Burst Current: 40A (≤10s)
  • Input Voltage: 2–4S LiPo / 5–12S NiMH/NiCd
  • Bec Output: 5V / 2A
  • Battery Connector: T-Type (Deans compatible), pre-soldered
  • Motor Connectors: 3 x 3.5mm bullet connectors, pre-soldered
  • Programmable: Yes (via transmitter or programming card)
  • الوزن: 4 g

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

تصفّح المزيد من Drone Motor في إكوسترا.

Specification

Specification

WeightWeight40 g
Dimensions45 × 24 × 11 cm
continuous-current30A
burst-current40A (≤10s)
input-voltage2–4S LiPo / 5–12S NiMH/NiCd
bec-output5V / 2A
battery-connectorT-Type (Deans compatible), pre-soldered
motor-connectors3 x 3.5mm bullet connectors, pre-soldered
programmableYes (via transmitter or programming card)

Customer Reviews