

The Motor 3600 1800kv is a high-performance brushless motor designed for applications requiring high speed, efficiency, and reliability. Manufactured by Motor, this motor is ideal for use in drones, RC vehicles, and other high-speed applications. Its KV rating of 1800 indicates that it spins at 1800 revolutions per minute (RPM) per volt applied, making it suitable for projects demanding precision and power.








Below are the key technical details for the Motor 3600 1800kv:
| Parameter | Value |
|---|---|
| Manufacturer | Motor |
| Part ID | Motor 3600 1800kv |
| Motor Type | Brushless DC (BLDC) |
| KV Rating | 1800 KV |
| Maximum RPM | 3600 RPM |
| Operating Voltage Range | 7.4V - 22.2V (2S to 6S LiPo) |
| Maximum Current | 35A |
| Power Output | Up to 700W |
| Shaft Diameter | 5mm |
| Motor Dimensions | 28mm x 36mm |
| Weight | 75g |
| Mounting Hole Pattern | 16mm x 19mm |
| Connector Type | 3.5mm bullet connectors |
The Motor 3600 1800kv has three wires for connection to an electronic speed controller (ESC). These wires are color-coded for easy identification:
| Wire Color | Description |
|---|---|
| Yellow | Phase A (connect to ESC output A) |
| Blue | Phase B (connect to ESC output B) |
| Green | Phase C (connect to ESC output C) |
Note: The motor does not have a built-in sensor, so it operates as a sensorless brushless motor.
Below is an example of controlling the motor using an Arduino UNO and an ESC:
// Example code to control Motor 3600 1800kv using Arduino UNO and ESC
#include <Servo.h> // Include Servo library to generate PWM signal
Servo esc; // Create a Servo object to control the ESC
void setup() {
esc.attach(9); // Connect ESC signal wire to Arduino pin 9
esc.writeMicroseconds(1000); // Send minimum throttle signal to arm the ESC
delay(2000); // Wait for ESC to initialize
}
void loop() {
esc.writeMicroseconds(1500); // Set throttle to 50% (adjust value as needed)
delay(5000); // Run motor for 5 seconds
esc.writeMicroseconds(1000); // Stop the motor
delay(2000); // Wait for 2 seconds before restarting
}
Note: Ensure the ESC is properly armed before running the motor. Refer to the ESC's manual for specific arming procedures.
Motor Does Not Spin
Motor Spins in the Wrong Direction
Motor Overheats
Vibrations During Operation
Q: Can this motor be used with a 3S LiPo battery?
Q: Is this motor waterproof?
Q: What is the maximum propeller size for this motor?
Q: Can I use this motor with a brushed ESC?
By following this documentation, users can effectively integrate the Motor 3600 1800kv into their projects and achieve optimal performance.