The Motor de Vidro Elétrico is a compact electric motor designed to control the movement of car windows. It enables the raising and lowering of windows with the push of a button, providing convenience and ease of use in modern vehicles. This motor is a critical component in power window systems and is commonly found in automobiles.
Below are the key technical details of the Motor de Vidro Elétrico:
Parameter | Value |
---|---|
Operating Voltage | 12V DC |
Operating Current | 2A to 5A (depending on load) |
Stall Current | Up to 10A |
Power Output | ~20W |
Motor Type | Brushed DC Motor |
Gearbox Ratio | 1:50 (typical) |
Torque Output | ~10 Nm (varies by model) |
Speed | ~50 RPM (under load) |
Dimensions | ~100mm x 50mm x 40mm |
Weight | ~500g |
The Motor de Vidro Elétrico typically has two terminals for operation:
Pin | Description |
---|---|
Pin 1 | Positive terminal (+12V DC input) |
Pin 2 | Negative terminal (Ground or -12V input) |
Note: The motor's direction of rotation can be reversed by swapping the polarity of the input voltage.
Below is an example of how to control the Motor de Vidro Elétrico using an Arduino UNO and an L298N motor driver:
OUT1
and OUT2
pins of the L298N module.IN1
and IN2
pins of the L298N to Arduino digital pins 8 and 9, respectively.VCC
and GND
pins.GND
to the Arduino's GND
.// Define motor control pins
const int motorPin1 = 8; // IN1 on L298N
const int motorPin2 = 9; // IN2 on L298N
void setup() {
// Set motor pins as outputs
pinMode(motorPin1, OUTPUT);
pinMode(motorPin2, OUTPUT);
}
void loop() {
// Example: Move window up
digitalWrite(motorPin1, HIGH); // Set IN1 high
digitalWrite(motorPin2, LOW); // Set IN2 low
delay(2000); // Run motor for 2 seconds
// Stop motor
digitalWrite(motorPin1, LOW);
digitalWrite(motorPin2, LOW);
delay(1000); // Wait for 1 second
// Example: Move window down
digitalWrite(motorPin1, LOW); // Set IN1 low
digitalWrite(motorPin2, HIGH); // Set IN2 high
delay(2000); // Run motor for 2 seconds
// Stop motor
digitalWrite(motorPin1, LOW);
digitalWrite(motorPin2, LOW);
delay(1000); // Wait for 1 second
}
Motor Does Not Turn On
Motor Runs in One Direction Only
Motor Overheats
Excessive Noise or Vibration
Q: Can I use a 24V power supply with this motor?
A: No, the motor is designed for 12V operation. Using a higher voltage may damage the motor.
Q: How do I reverse the motor's direction?
A: Reverse the polarity of the input voltage using an H-bridge motor driver or a DPDT switch.
Q: Can this motor be used for non-automotive applications?
A: Yes, it can be used in robotics, DIY projects, or any application requiring controlled linear motion.
Q: What is the lifespan of this motor?
A: The lifespan depends on usage conditions but is typically several years under normal operation. Regular maintenance can extend its life.