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
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_(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
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_(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
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 (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
منتج أصلي بجودة مضمونة من إكوسترا، مع دعم فني ومتابعة بعد البيع لكل عملائنا في مصر.