L9110S 2-Channel Dual Motor Driver (L9110S) [B042]
https://www.youtube.com/watch?v=JVcARS8UydQ
* GitHub : https://github.com/rdiot/rdiot-b042.git
* Specs
The L9110S 2-Channel motor driver module is a compact board that can be used
to drive small robots. This module has two independent motor driver chips which can
each drive up 800mA of continuous current. The boards can be operated from 2.5V to
12V enabling this module to be used with both 3.3V and 5V microcontrollers.
On-board 2 L9110 motor control chip
Module can be driven by two dc motors at the same time or one phase 4 line 2 type stepping motor
Input voltage: 2.5-12V DC
Each channel has a continuous output current 800 ma
PCB Size: 29.2mm x 23mm
* Contents
- Connect
Motor Driver gnd, vcc --- Arduino gnd, Vcc
B-1A --- A0
B-1B --- A1
- Key Code
void setup() {
pinMode(A0,OUTPUT);
pinMode(A1,OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly
digitalWrite(A0,HIGH);
digitalWrite(A1,LOW);
delay(1000);
digitalWrite(A0,LOW);
digitalWrite(A1,HIGH);
delay(1000);
digitalWrite(A0,LOW);
digitalWrite(A1,LOW);
delay(2000);
}
'3) Actuator > Motor_Driver' 카테고리의 다른 글
ULN2003 Stepper Motor driver (X113647) [B002] (0) | 2016.10.05 |
---|---|
Control H Bidge Gear Motor Control [P003] (0) | 2016.10.05 |
L298N Dual Motor Driver H Bridge (L298N) [B005] (0) | 2016.10.05 |
6~28V 3A Motor Speed Controller [B056] (0) | 2016.10.05 |