The Nema 14 36mm Pancake Stepper Motor is a compact and efficient stepper motor designed for precision motion control applications. With a body length of just 36mm, this motor is ideal for projects where space is limited but high torque and accurate positioning are required. Common applications include 3D printers, CNC machines, robotics, and other automated systems.
Parameter | Value |
---|---|
Step Angle | 1.8° |
Holding Torque | 0.22 Nm |
Rated Current | 1.2 A/phase |
Voltage | 3.6 V |
Resistance | 3.0 Ω/phase |
Inductance | 2.8 mH/phase |
Body Length | 36 mm |
Shaft Diameter | 5 mm |
Number of Leads | 4 |
Weight | 0.2 kg |
Pin Number | Wire Color | Description |
---|---|---|
1 | Red | Coil A |
2 | Blue | Coil A' |
3 | Green | Coil B |
4 | Black | Coil B' |
To use the Nema 14 36mm Pancake Stepper Motor in a circuit, you will need a stepper motor driver, such as the A4988 or DRV8825, and a microcontroller, such as an Arduino UNO. Below is a basic setup guide:
Connect the Motor to the Driver:
Connect the Driver to the Arduino:
Arduino Code Example:
// Define stepper motor connections and steps per revolution
#define dirPin 3
#define stepPin 2
#define stepsPerRevolution 200
void setup() {
// Set the direction and step pins as outputs
pinMode(stepPin, OUTPUT);
pinMode(dirPin, OUTPUT);
}
void loop() {
// Set the direction clockwise
digitalWrite(dirPin, HIGH);
// Step the motor one revolution
for (int i = 0; i < stepsPerRevolution; i++) {
digitalWrite(stepPin, HIGH);
delayMicroseconds(1000); // Adjust delay for speed control
digitalWrite(stepPin, LOW);
delayMicroseconds(1000);
}
delay(1000); // Wait for a second
// Set the direction counterclockwise
digitalWrite(dirPin, LOW);
// Step the motor one revolution
for (int i = 0; i < stepsPerRevolution; i++) {
digitalWrite(stepPin, HIGH);
delayMicroseconds(1000);
digitalWrite(stepPin, LOW);
delayMicroseconds(1000);
}
delay(1000); // Wait for a second
}
Motor Not Moving:
Motor Vibrating or Making Noise:
Overheating:
By following this documentation, users can effectively utilize the Nema 14 36mm Pancake Stepper Motor in their projects, ensuring reliable and precise motion control.