The Motor Power Window is an essential component in modern automotive systems, designed to control the up and down movement of a car's power window. This motor is typically integrated into the door assembly and is responsible for the smooth and efficient operation of the window mechanism. It is widely used in various types of vehicles, including sedans, SUVs, and trucks.
Parameter | Value |
---|---|
Operating Voltage | 12V DC |
Current Rating | 2A - 5A (depending on load) |
Power Rating | 24W - 60W |
Speed | 50 - 100 RPM |
Torque | 10 - 20 Nm |
Operating Temperature | -20°C to 70°C |
Weight | 500g - 1kg |
Pin Number | Pin Name | Description |
---|---|---|
1 | VCC | Power supply (12V DC) |
2 | GND | Ground |
3 | IN1 | Control signal for direction (Input) |
4 | IN2 | Control signal for direction (Input) |
// Define the control pins
const int IN1 = 8;
const int IN2 = 9;
void setup() {
// Set the control pins as outputs
pinMode(IN1, OUTPUT);
pinMode(IN2, OUTPUT);
}
void loop() {
// Move window up
digitalWrite(IN1, HIGH); // Set IN1 high
digitalWrite(IN2, LOW); // Set IN2 low
delay(5000); // Run motor for 5 seconds
// Stop motor
digitalWrite(IN1, LOW); // Set IN1 low
digitalWrite(IN2, LOW); // Set IN2 low
delay(2000); // Wait for 2 seconds
// Move window down
digitalWrite(IN1, LOW); // Set IN1 low
digitalWrite(IN2, HIGH); // Set IN2 high
delay(5000); // Run motor for 5 seconds
// Stop motor
digitalWrite(IN1, LOW); // Set IN1 low
digitalWrite(IN2, LOW); // Set IN2 low
delay(2000); // Wait for 2 seconds
}
Motor Not Running:
Motor Overheating:
Erratic Movement:
Can I use a different voltage?
How do I reverse the motor direction?
What should I do if the motor is noisy?
By following this documentation, users can effectively integrate and troubleshoot the Motor Power Window in their projects, ensuring smooth and reliable operation.