

The Hobbywing Seaking 60A is a high-performance electronic speed controller (ESC) designed for brushless motors. Manufactured by ESC, this component is widely used in remote-controlled (RC) vehicles, including boats, cars, and drones. It provides efficient power management, smooth throttle response, and reliable operation under demanding conditions. With a 60A current rating, it is suitable for medium to high-power applications.








The following table outlines the key technical details of the Hobbywing Seaking 60A ESC:
| Parameter | Specification |
|---|---|
| Continuous Current | 60A |
| Burst Current | 360A (up to 10 seconds) |
| Input Voltage Range | 2S–6S LiPo (7.4V–22.2V) |
| BEC Output | 6V/5A (Switch Mode) |
| Motor Compatibility | Brushless motors |
| Waterproof Rating | Fully waterproof |
| Dimensions | 92mm x 31mm x 16mm |
| Weight | 105g (including wires) |
| Operating Temperature | -20°C to 105°C |
| Throttle Signal Range | 1100µs–1900µs |
The Hobbywing Seaking 60A ESC has the following key connections:
| Pin/Connector | Description |
|---|---|
| Battery Input (Red/Black) | Connects to the power source (LiPo battery) |
| Motor Output (3 Wires) | Connects to the brushless motor |
| Receiver Signal Wire | Connects to the RC receiver throttle channel (PWM) |
| BEC Output (Red/Black) | Provides regulated 6V power for the receiver or servos |
The Hobbywing Seaking 60A ESC can be controlled using an Arduino UNO by generating a PWM signal. Below is an example code snippet:
#include <Servo.h> // Include the Servo library to generate PWM signals
Servo esc; // Create a Servo object to control the ESC
void setup() {
esc.attach(9); // Attach the ESC signal wire to pin 9 on the Arduino
esc.writeMicroseconds(1000); // Send minimum throttle signal (1000µs)
delay(2000); // Wait for 2 seconds to allow ESC initialization
}
void loop() {
esc.writeMicroseconds(1500); // Send mid-throttle signal (1500µs)
delay(5000); // Run motor at mid-speed for 5 seconds
esc.writeMicroseconds(1000); // Send minimum throttle signal (stop motor)
delay(5000); // Wait for 5 seconds before repeating
}
Note: Ensure the ESC is properly calibrated before using it with an Arduino. Always test the setup with the motor disconnected to avoid accidental movement.
Motor Does Not Spin
ESC Emits Continuous Beeping
Overheating
Motor Spins in the Wrong Direction
No Power to Receiver
Q: Can I use the Hobbywing Seaking 60A ESC with a brushed motor?
A: No, this ESC is designed specifically for brushless motors.
Q: Is the ESC compatible with 7.2V NiMH batteries?
A: No, the ESC is designed for 2S–6S LiPo batteries only.
Q: How do I program the ESC?
A: Use the Hobbywing programming card to adjust settings such as timing, throttle curve, and cutoff voltage.
Q: Can I use this ESC for aerial drones?
A: Yes, but ensure the ESC's specifications meet the power requirements of your drone.
By following this documentation, users can effectively integrate the Hobbywing Seaking 60A ESC into their projects and troubleshoot common issues with ease.