

The ESCON 70/10, manufactured by Maxon Motors, is a high-performance electronic speed controller (ESC) designed for precise control of brushless DC motors. It is widely used in applications requiring smooth motor operation, such as model aircraft, remote-controlled vehicles, robotics, and industrial automation. The ESCON 70/10 offers advanced features like programmable throttle response, braking, and protection mechanisms, making it a versatile and reliable choice for motor control.








The ESCON 70/10 is engineered to deliver high efficiency and reliability. Below are its key technical details:
| Parameter | Value |
|---|---|
| Manufacturer | Maxon Motors |
| Part Number | ESCON 70/10 |
| Motor Type Supported | Brushless DC (BLDC) |
| Input Voltage Range | 10 V to 70 V |
| Continuous Output Current | 10 A |
| Peak Output Current | 20 A |
| PWM Frequency | 50 kHz |
| Efficiency | > 95% |
| Operating Temperature | -30°C to +85°C |
| Dimensions | 55 mm x 40 mm x 15 mm |
| Weight | 50 g |
The ESCON 70/10 features a set of input/output pins for power, control, and motor connections. Below is the pinout description:
| Pin Name | Description |
|---|---|
| VIN+ | Positive input voltage (10 V to 70 V) |
| VIN- | Ground (negative input voltage) |
| M1 | Motor phase 1 connection |
| M2 | Motor phase 2 connection |
| M3 | Motor phase 3 connection |
| Pin Name | Description |
|---|---|
| GND | Signal ground |
| PWM_IN | PWM input signal for speed control |
| ENABLE | Enable/disable motor operation |
| BRAKE | Brake control input |
| TACH_OUT | Tachometer output for speed feedback |
The ESCON 70/10 is designed for easy integration into motor control systems. Follow the steps below to use the component effectively:
VIN+ and VIN- pins. Ensure the power supply can deliver sufficient current for your motor's requirements.M1, M2, and M3 pins. Ensure the connections are secure and match the motor's specifications.PWM_IN pin to control the motor speed. The duty cycle of the PWM signal determines the motor speed.ENABLE pin high to activate the ESCON 70/10. Pulling it low will disable the motor.BRAKE pin to apply braking. Pulling this pin high activates the braking function.Below is an example of how to control the ESCON 70/10 using an Arduino UNO:
// Example: Controlling ESCON 70/10 with Arduino UNO
// This code generates a PWM signal to control motor speed via the ESCON 70/10
const int pwmPin = 9; // PWM output pin connected to ESCON's PWM_IN
const int enablePin = 8; // Enable pin connected to ESCON's ENABLE
void setup() {
pinMode(pwmPin, OUTPUT); // Set PWM pin as output
pinMode(enablePin, OUTPUT); // Set Enable pin as output
digitalWrite(enablePin, HIGH); // Enable the ESCON 70/10
}
void loop() {
// Gradually increase motor speed
for (int dutyCycle = 0; dutyCycle <= 255; dutyCycle++) {
analogWrite(pwmPin, dutyCycle); // Write PWM signal
delay(20); // Wait for 20 ms
}
// Gradually decrease motor speed
for (int dutyCycle = 255; dutyCycle >= 0; dutyCycle--) {
analogWrite(pwmPin, dutyCycle); // Write PWM signal
delay(20); // Wait for 20 ms
}
}
Motor Does Not Spin
ENABLE pin is not pulled high.ENABLE pin is connected to a high logic level.Motor Vibrates or Runs Erratically
Overheating
No Response to PWM Signal
Q: Can the ESCON 70/10 be used with brushed DC motors?
A: No, the ESCON 70/10 is designed specifically for brushless DC motors.
Q: What is the maximum PWM frequency supported?
A: The ESCON 70/10 supports PWM frequencies up to 50 kHz.
Q: Does the ESCON 70/10 support regenerative braking?
A: Yes, the ESCON 70/10 includes a braking function that can be activated via the BRAKE pin.
Q: Can I use the ESCON 70/10 in outdoor environments?
A: Yes, but ensure it is protected from moisture and extreme temperatures beyond its operating range.
By following this documentation, users can effectively integrate the ESCON 70/10 into their motor control systems and achieve reliable performance.