KS0412 keyestudio L298P Shield: Difference between revisions

From Keyestudio Wiki
Jump to navigation Jump to search
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:


[[image:0412-图片1.png|thumb|600px|right|Keyestudio L298P Motor Shield With Power Switch]]
[[image:0412-图片1.png|thumb|500px|right|Keyestudio L298P Motor Shield With Power Switch (Black and Eco-friendly)]]


<br>
<br>
Line 6: Line 6:
You can use UNO R3 microcontroller and add external components to complete a variety of amazing experiments, such as smart robot DIY. <br>
You can use UNO R3 microcontroller and add external components to complete a variety of amazing experiments, such as smart robot DIY. <br>
When DIY your robot, it is necessary to use the motor driver board to drive the DC motors, however, sometimes need to connect the motor drive board to UNO using lots of jumper wires, pretty inconvenient.<br>
When DIY your robot, it is necessary to use the motor driver board to drive the DC motors, however, sometimes need to connect the motor drive board to UNO using lots of jumper wires, pretty inconvenient.<br>
Now, we have launched this keyestudio motor shield with L298P as core. <br>
Now, we have launched this keyestudio motor shield with L298P as core. <br>
<soan style =color:red> Note that the motor’s speed and direction interfaces have been connected. D3 is for controlling the speed of motor A, and D12 is for controlling the direction of motor A. D11 is for controlling the speed of motor B, and D13 is for controlling the direction. </span><br>
<span style =color:red> Note that the motor’s speed and direction interfaces have been connected. D3 is for controlling the speed of motor A, and D12 is for controlling the direction of motor A. D11 is for controlling the speed of motor B, and D13 is for controlling the direction. </span><br>


Just simply stack the shield onto UNO board to power the shield and UNO board. The 3 kinds of power supply are as follows:<br>
Just simply stack the shield onto UNO board to power the shield and UNO board. The 3 kinds of power supply are as follows:<br>
Line 16: Line 17:
The L298P shield also comes with through-hole welding space, so you are able to weld the electronic elements to design a variety of prototyping circuits. <br>  
The L298P shield also comes with through-hole welding space, so you are able to weld the electronic elements to design a variety of prototyping circuits. <br>  


<soan style=color:brown> '''Pay close attention to:'''  <br>
<span style=color:brown> '''Pay close attention to:'''  <br>
The shield comes with a slide switch. When power via the DC jack on the UNO R3  and female headers on the L298P shield, the slide switch is not available. <br>
The shield comes with a slide switch. When power via the DC jack on the UNO R3  and female headers on the L298P shield, the slide switch is not available. <br>
But when power via the green terminal blocks on the L298P shield, the slide switch can be used as power control switch. </span> <br>
But when power via the green terminal blocks on the L298P shield, the slide switch can be used as power control switch. </span> <br>


<br>[[Image:0412-图片2.png|800px|frameless]]<br>
<br>[[Image:0412-图片2.png|600px|frameless]]<br>


<br>
<br>
== Specifications  ==
== Specifications  ==


Line 112: Line 114:


==Resources ==
==Resources ==
*You can click here to download the datasheet: <br>
*You can click here to download the datasheet: <br>
https://drive.google.com/open?id=1EuEiY4G-xgj-M4-3XVYqe7XJtKzX-1ms
 
https://fs.keyestudio.com/KS0412




<br>
<br>
==Get One Now ==
==Get One Now ==
*[https://www.keyestudio.com/updated-version-keyestudio-l298p-shield-with-power-switch-for-arduino-uno-r3-p0544.html  '''Official Website''' ]
*[https://www.keyestudio.com/updated-version-keyestudio-l298p-shield-with-power-switch-for-arduino-uno-r3-p0544.html  '''Official Website''' ]

Latest revision as of 12:00, 6 January 2021

Keyestudio L298P Motor Shield With Power Switch (Black and Eco-friendly)


Introduction

You can use UNO R3 microcontroller and add external components to complete a variety of amazing experiments, such as smart robot DIY.
When DIY your robot, it is necessary to use the motor driver board to drive the DC motors, however, sometimes need to connect the motor drive board to UNO using lots of jumper wires, pretty inconvenient.

Now, we have launched this keyestudio motor shield with L298P as core.
Note that the motor’s speed and direction interfaces have been connected. D3 is for controlling the speed of motor A, and D12 is for controlling the direction of motor A. D11 is for controlling the speed of motor B, and D13 is for controlling the direction.

Just simply stack the shield onto UNO board to power the shield and UNO board. The 3 kinds of power supply are as follows:

  • You can power the board via the black DC jack on the UNO R3 board.
  • Or power the board through the VIN GND female header of 2.54mm pitch on the shield.
  • Supply the power through the green terminal blocks on the shield.

The L298P shield also comes with through-hole welding space, so you are able to weld the electronic elements to design a variety of prototyping circuits.

Pay close attention to:
The shield comes with a slide switch. When power via the DC jack on the UNO R3 and female headers on the L298P shield, the slide switch is not available.
But when power via the green terminal blocks on the L298P shield, the slide switch can be used as power control switch.


0412-图片2.png


Specifications

Logic part input voltage DC5V
Driving part input voltage Max DC 18V (DC 7-12V recommended)
Logic part working current ≤36mA
Driving part working current ≤ 2A
Maximum dissipation power 25W (T=75℃)
Control signal input level High level: 2.3V ≤ Vin ≤ 5V ; Low level: 0V ≤ Vin ≤ 1.5V
Working temperature -25℃ to+130℃
Driver form Dual power H bridge driving



Controller Compatible


Technical Details

  • Dimensions: 60mm x 59mm x 23mm
  • Weight: 21g


0412-图片3.png


PINOUT Instruction


0412-图片4.png


How to Test it ?

Connect it Up

Simply stack the shield onto UNO R3 board, then connect two motors to terminal block.

Upload the Code

Below is an example code, you can copy and paste it on Arduino IDE.

int E1 = 3;  
int M1 = 12;
int E2 =11;                        
int M2 = 13;                          

void setup()
{
    pinMode(M1, OUTPUT);  
    pinMode(M2, OUTPUT);
}

void loop()
{
    digitalWrite(M1,HIGH);  
    digitalWrite(M2, HIGH);      
    analogWrite(E1, 200);   // PWM regulate speed
    analogWrite(E2, 200);   // PWM regulate speed
    delay(8000);
    digitalWrite(M1,LOW);  
    digitalWrite(M2, LOW);      
    analogWrite(E1, 200);   //PWM regulate speed
    analogWrite(E2, 200);   //PWM regulate speed
    delay(8000);
}


Test Result

Upload well the code, turn the switch ON, you should see the two motors firstly turn forward for 8 seconds, then reverse for 8 seconds, alternately and circularly.
Turn the switch OFF, the voltage is disconnected, the motor will keep still.
0412-图片5.png


Resources

  • You can click here to download the datasheet:

https://fs.keyestudio.com/KS0412



Get One Now