يشحن من الصين
Keyestudio L298P Shield/2A High Current Dual Motor Drive Module for arduino
القسم: ألعاب أطفال, روبوتات الأطفال
مشاركة المنتج
- معلومات المنتج
- مواصفات المنتج
- High-concerned chemical: None
- Package: Other
- is_customized: Yes
- Supply Voltage: 5V
- Application: Electric Toy
- Type: Drive IC
- Brand Name: keyestudio
- Origin: Mainland China
- Condition: New
- Operating Temperature: 0-40






Introduction
L298P Shield DC motor driver adopts the L298P driver chip wich is exclusively made for large-power motor. It can drive 2 DC motors directly with a drive current reaching 2A. The motor output is equipped with eight high-speed schottky diode as protection. This driver carries neat circuit layout and bonded components, in addition, the multi-layer design enables it to be plugged to Aduino directly.
L298P Shield DC motor driver carries PWM mode. The motor can be powered via Aduino VIN input or terminal input on the driver, which are switchable by jumper.
Specification
Logic part input voltage : VD: 5V
Driving part input voltage VS: VIN input 6.5 ~ 12V, PWRIN input 4.8 ~ 24V
Logic part working current Iss: ≤36mA
Driving part working current Io: ≤ 2A
Maximum dissipation power: 25W (T=75°C)
Control signal input level:
High level: 2.3V ≤ Vin ≤ 5V
Low level: -0.3V ≤ Vin ≤ 1.5V
Working temperature: -25°C~+130°C
Driver form: Dual power H bridge driving
Sample code:
int E1 = 5;
int M1 = 4;
int E2 = 6;
int M2 = 7;
void setup()
{
pinMode(M1, OUTPUT);
pinMode(M2, OUTPUT);
}
void loop()
{
int value;
for(value = 0 ; value <= 255; value+=5)
{
digitalWrite(M1,HIGH);
digitalWrite(M2, HIGH);
analogWrite(E1, value); //PWM speed regulation
analogWrite(E2, value); //PWM speed regulation
delay(30);
}
}













