

The Motor 3600 1800kv is a high-performance brushless motor designed for applications requiring high speed, efficiency, and reliability. With a maximum RPM of 3600 and a KV rating of 1800 (indicating 1800 RPM per volt), this motor is ideal for use in drones, RC vehicles, robotics, and other high-speed applications. Its brushless design ensures minimal wear and tear, making it a durable and efficient choice for demanding projects.








| Parameter | Value |
|---|---|
| Manufacturer | Motor |
| Manufacturer Part ID | Motor 3600 1800kv |
| Motor Type | Brushless DC (BLDC) |
| KV Rating | 1800 KV (RPM per volt) |
| Maximum RPM | 3600 RPM |
| Operating Voltage Range | 7.4V - 14.8V (2S-4S LiPo) |
| Maximum Current | 30A |
| Shaft Diameter | 5 mm |
| Motor Dimensions | 35 mm (diameter) x 50 mm (length) |
| Weight | 120 g |
| Mounting Hole Pattern | 16 mm x 19 mm |
The Motor 3600 1800kv has three wires for connection, as is standard for brushless motors. These wires are typically color-coded for easy identification.
| Wire Color | Description |
|---|---|
| Red | Phase A (connect to ESC output A) |
| Yellow | Phase B (connect to ESC output B) |
| Black | Phase C (connect to ESC output C) |
Note: The motor does not have a built-in controller. It must be connected to an Electronic Speed Controller (ESC) for operation.
Connect to an ESC:
Power Supply:
Control Signal:
Mounting:
Cooling:
Below is an example of how to control the Motor 3600 1800kv using an Arduino UNO and a compatible ESC.
#include <Servo.h> // Include the Servo library to control the ESC
Servo esc; // Create a Servo object to control the ESC
void setup() {
esc.attach(9); // Connect the ESC signal wire to Arduino pin 9
esc.writeMicroseconds(1000); // Send minimum throttle signal to arm the ESC
delay(2000); // Wait for 2 seconds to ensure the ESC is armed
}
void loop() {
esc.writeMicroseconds(1500); // Set throttle to 50% (1500 µs)
delay(5000); // Run the motor at 50% throttle for 5 seconds
esc.writeMicroseconds(1000); // Set throttle to 0% (1000 µs)
delay(5000); // Stop the motor for 5 seconds
}
Important Notes:
- Always ensure the motor is securely mounted before powering it on.
- Disconnect the power supply when making wiring changes.
- Use a current-limiting power supply or fuse to protect the motor and ESC.
| Issue | Possible Cause | Solution |
|---|---|---|
| Motor does not spin | ESC not armed or incorrect wiring | Ensure ESC is armed and wiring is correct. |
| Motor spins in the wrong direction | Incorrect phase wire connections | Swap any two motor wires. |
| Motor overheats | Overloaded or insufficient cooling | Reduce load or improve airflow. |
| Motor stutters or vibrates | ESC signal issue or damaged motor | Check ESC signal and inspect motor. |
Can I use this motor with a 6V power supply?
What ESC should I use with this motor?
How do I reverse the motor's rotation?
Can I run this motor continuously at maximum RPM?
Is this motor waterproof?
This concludes the documentation for the Motor 3600 1800kv. For further assistance, refer to the manufacturer's support resources or contact technical support.