

The Motor AK-70, manufactured by ESP32, is a compact and efficient electric motor designed for a wide range of applications. It delivers reliable performance and high torque output in a small form factor, making it ideal for robotics, automation systems, and other precision-driven projects. Its robust design ensures durability and consistent operation, even under demanding conditions.








The Motor AK-70 is engineered to provide optimal performance while maintaining energy efficiency. Below are its key technical details:
| Parameter | Value |
|---|---|
| Manufacturer | ESP32 |
| Part ID | Motor |
| Motor Type | Brushless DC (BLDC) |
| Rated Voltage | 12V DC |
| Operating Voltage Range | 9V - 15V DC |
| Rated Current | 2.5A |
| Stall Current | 5A |
| Rated Torque | 0.7 Nm |
| Maximum Torque | 1.2 Nm |
| No-Load Speed | 3000 RPM |
| Efficiency | 85% |
| Dimensions | 70mm x 35mm x 35mm |
| Weight | 250g |
The Motor AK-70 features a 3-pin connector for power and control. Below is the pinout:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | VCC | Power supply input (9V - 15V DC) |
| 2 | GND | Ground connection |
| 3 | PWM | Pulse Width Modulation input for speed control |
The Motor AK-70 is straightforward to integrate into your projects. Follow the steps below to use it effectively:
Below is an example of how to control the Motor AK-70 using an Arduino UNO:
// Motor AK-70 Control Example
// This code demonstrates how to control the speed of the Motor AK-70
// using PWM signals from an Arduino UNO.
const int motorPWM = 9; // PWM pin connected to the motor's PWM input
void setup() {
pinMode(motorPWM, OUTPUT); // Set the motor PWM pin as an output
}
void loop() {
// Gradually increase motor speed
for (int speed = 0; speed <= 255; speed += 5) {
analogWrite(motorPWM, speed); // Send PWM signal to motor
delay(50); // Wait for 50ms
}
// Gradually decrease motor speed
for (int speed = 255; speed >= 0; speed -= 5) {
analogWrite(motorPWM, speed); // Send PWM signal to motor
delay(50); // Wait for 50ms
}
}
Motor Does Not Start
Motor Overheats
Inconsistent Speed
Motor Vibrates Excessively
Q: Can the Motor AK-70 be used with a 24V power supply?
A: No, the motor is designed for a maximum operating voltage of 15V DC. Using a higher voltage may damage the motor.
Q: What is the recommended PWM frequency for speed control?
A: A PWM frequency between 1 kHz and 10 kHz is recommended for optimal performance.
Q: Can the motor be used in reverse?
A: Yes, but you will need a motor driver or H-bridge circuit to reverse the polarity safely.
Q: Is the Motor AK-70 waterproof?
A: No, the motor is not waterproof. Avoid exposing it to water or moisture.
By following this documentation, you can effectively integrate the Motor AK-70 into your projects and ensure reliable performance.