The Johnson Motor by Johnson & Johnson (Part ID: Johnson Motor) is a high-performance DC motor renowned for its high torque and efficiency. This motor is widely used in various applications, including robotics, automotive systems, and industrial machinery. Its robust design and reliable performance make it a popular choice for both hobbyists and professionals.
Parameter | Value |
---|---|
Voltage Rating | 6V - 12V |
Current Rating | 1.5A (no load) |
Stall Current | 6A |
Power Rating | 18W |
Torque | 0.5 Nm |
Speed | 3000 RPM (at 12V) |
Shaft Diameter | 5mm |
Motor Dimensions | 35mm x 50mm |
Weight | 200g |
Pin Number | Pin Name | Description |
---|---|---|
1 | V+ | Positive Voltage Input (6V - 12V) |
2 | V- | Ground (0V) |
3 | NC | Not Connected |
// Johnson Motor Control with Arduino UNO
// This example demonstrates how to control the Johnson Motor using an L298N motor driver
const int motorPin1 = 9; // IN1 on the L298N
const int motorPin2 = 10; // IN2 on the L298N
const int enablePin = 11; // ENA on the L298N
void setup() {
// Set all the motor control pins to outputs
pinMode(motorPin1, OUTPUT);
pinMode(motorPin2, OUTPUT);
pinMode(enablePin, OUTPUT);
// Enable the motor
digitalWrite(enablePin, HIGH);
}
void loop() {
// Rotate the motor clockwise
digitalWrite(motorPin1, HIGH);
digitalWrite(motorPin2, LOW);
delay(2000); // Run for 2 seconds
// Stop the motor
digitalWrite(motorPin1, LOW);
digitalWrite(motorPin2, LOW);
delay(1000); // Stop for 1 second
// Rotate the motor counterclockwise
digitalWrite(motorPin1, LOW);
digitalWrite(motorPin2, HIGH);
delay(2000); // Run for 2 seconds
// Stop the motor
digitalWrite(motorPin1, LOW);
digitalWrite(motorPin2, LOW);
delay(1000); // Stop for 1 second
}
Motor Not Spinning:
Motor Overheating:
Noisy Operation:
Q1: Can I run the Johnson Motor at 5V?
Q2: How can I reverse the motor direction?
Q3: What is the maximum load the motor can handle?
This documentation provides a comprehensive guide to using the Johnson Motor by Johnson & Johnson. Whether you are a beginner or an experienced user, following these guidelines will help you effectively integrate this motor into your projects.