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.
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
11voidsetup() {
12Serial.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
15delay(3000);
16}
17
18voidloop() {
19 esc.writeMicroseconds(1300); // low throttle - INCREASE GRADUALLY AND CAREFULLY with a real propeller attached
20delay(2000);
21 esc.writeMicroseconds(1000); // back to minimum
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
11voidsetup() {
12Serial.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
15delay(3000);
16}
17
18voidloop() {
19 esc.writeMicroseconds(1300); // low throttle - INCREASE GRADUALLY AND CAREFULLY with a real propeller attached
20delay(2000);
21 esc.writeMicroseconds(1000); // back to minimum
22delay(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
11voidsetup() {
12Serial.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
15delay(3000);
16}
17
18voidloop() {
19 esc.writeMicroseconds(1300); // low throttle - INCREASE GRADUALLY AND CAREFULLY with a real propeller attached
20delay(2000);
21 esc.writeMicroseconds(1000); // back to minimum
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
11voidsetup() {
12Serial.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
15delay(3000);
16}
17
18voidloop() {
19 esc.writeMicroseconds(1300); // low throttle - INCREASE GRADUALLY AND CAREFULLY with a real propeller attached
20delay(2000);
21 esc.writeMicroseconds(1000); // back to minimum
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
11voidsetup() {
12Serial.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
15delay(3000);
16}
17
18voidloop() {
19 esc.writeMicroseconds(1300); // low throttle - INCREASE GRADUALLY AND CAREFULLY with a real propeller attached
20delay(2000);
21 esc.writeMicroseconds(1000); // back to minimum
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
11voidsetup() {
12Serial.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
15delay(3000);
16}
17
18voidloop() {
19 esc.writeMicroseconds(1300); // low throttle - INCREASE GRADUALLY AND CAREFULLY with a real propeller attached
20delay(2000);
21 esc.writeMicroseconds(1000); // back to minimum
22delay(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
11voidsetup() {
12Serial.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
15delay(3000);
16}
17
18voidloop() {
19 esc.writeMicroseconds(1300); // low throttle - INCREASE GRADUALLY AND CAREFULLY with a real propeller attached
20delay(2000);
21 esc.writeMicroseconds(1000); // back to minimum
22delay(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. المنتج غير متوفر حالياً — تواصل معنا عبر واتساب لمعرفة موعد توفره القادم.