

The 3P Motor Reversing Module by B is a compact and efficient device designed to control the direction of a DC motor by reversing the polarity of the voltage applied to the motor terminals. This functionality enables seamless forward and reverse operation of the motor, making it an essential component in motor control systems.








The following table outlines the key technical details of the 3P Motor Reversing Module:
| Parameter | Value |
|---|---|
| Operating Voltage | 5V to 30V DC |
| Maximum Current | 10A |
| Control Signal Voltage | 3.3V to 5V (logic level) |
| Dimensions | 50mm x 30mm x 15mm |
| Operating Temperature | -20°C to 85°C |
| Weight | 20g |
The module features a 3-pin input interface and a 2-pin motor output interface. The pin configuration is as follows:
| Pin | Name | Description |
|---|---|---|
| 1 | VCC | Positive power supply input (5V to 30V DC). |
| 2 | GND | Ground connection. |
| 3 | IN | Control signal input. A HIGH signal (3.3V-5V) reverses the motor direction. |
| Pin | Name | Description |
|---|---|---|
| 1 | MOTOR+ | Positive terminal of the motor. |
| 2 | MOTOR- | Negative terminal of the motor. |
Below is an example of how to control the 3P Motor Reversing Module using an Arduino UNO:
// Define the control pin for the motor reversing module
const int motorControlPin = 7;
void setup() {
// Set the motor control pin as an output
pinMode(motorControlPin, OUTPUT);
}
void loop() {
// Drive the motor forward
digitalWrite(motorControlPin, LOW);
delay(5000); // Run forward for 5 seconds
// Reverse the motor direction
digitalWrite(motorControlPin, HIGH);
delay(5000); // Run in reverse for 5 seconds
}
Motor Does Not Run:
Motor Runs in Only One Direction:
Module Overheats:
Motor Vibrates but Does Not Turn:
Q: Can I use this module with a 3.3V microcontroller?
A: Yes, the IN pin is compatible with 3.3V logic levels.
Q: Is this module suitable for AC motors?
A: No, the 3P Motor Reversing Module is designed for DC motors only.
Q: Can I control the motor speed with this module?
A: No, this module is designed for direction control only. Use a motor driver with PWM support for speed control.
Q: What happens if I reverse the VCC and GND connections?
A: Reversing the power supply connections may damage the module. Always double-check your wiring before powering on.
This concludes the documentation for the 3P Motor Reversing Module by B. For further assistance, refer to the manufacturer's support resources.