Menu
-
MenuBack
-
Menu
-
Arduino & Raspberry & Micro:bit
-
-
-
-
-
Controller Boards
-
-
-
Batteries
-
Components & TOOLS
-
-
e-Textil
-
-
-
Interruptores & Botões
-
-
-
Sound and Audio
-
-
-
Comunication & Smart Home
-
-
LCD + Matrix + Keypad
-
-
Power Sources and Renewable Energy
-
-
-
RENEWABLE ENERGY
-
-
-
3D Printing & DRONES
-
-
Informática
-
-
Informática
-
-
-
Motors and Relays
-
-
Oficina & Equipamentos
-
-
Oficina & Equipamentos
- Cable ties
- Pliers and Wrenches
- Breadboards
- Drills and Milling Cutters
- Storage Boxes
- Electronics boxes
- Bench Equipment
- Tool Cases & Kits
- Heat shrink sleeve
- Multimeters
- Oscilloscope
- Screws and Spacers
- PCB Copper
- End-Sleeves
- IC Programmers
- Personal Protection
- Protoboards
- Soldering
- Spray and Conductive Paint
- DIN Rail Supports
- Others
-
-
-
ROBOTICS
-
-
Sensors
-
-
- Catalog
- New Products
- On Sale
- Tutorials
- Contact
Thumbnail Sized DC Motor Driver 2x1.5A (HR8833)
: MOT01030
€5.50
Tax included
This is a ultra compact size Dual-H-Bridge dc motor driver (Based on HR8833), which could drive two way 1.5A DC brush motors up to 10V . It has the same footprint as your thumbnail suitable for projects with limited spaces.
If you have any questions on this product please feel free to contact us.
*Disclaimer: The images are merely illustrative.
This is a ultra compact size Dual-H-Bridge dc motor driver (Based on HR8833), which could drive two way 1.5A DC brush motors up to 10V . It has the same footprint as your thumbnail suitable for projects with limited spaces.
Both sides of the module are desgined with standard XH2.54 pins, which allows you to plug it on a breadboard or prototype board.
SPECIFICATION
- Logic Input Voltage (VCC): 3.3-5V
- Load Supply Voltage (VM): 3.3-10V
- Maximum Continuous Operating Current: 1500mA( Single)
- Support PWM speed control mode
- Maximum power dissipation: 25W (T = 75 degree Celsius)
- Working temperature:-20~85℃
- Module Size: 18* 13mm/0.7*0.5 inches
Arduino sample code:
/* * @file Motor driver HR8833-Test.ino * @brief HR8833-Test.ino Motor control program * * control motor positive inversion * * @author lei.wu@dfrobot.com * @version V1.0 * @date 2016-4-13 */ const int IA1 = 10; const int IA2 = 12; const int IB1 = 11; const int IB2 = 13; void setup() { pinMode(IA1, OUTPUT); pinMode(IA2, OUTPUT); pinMode(IB1, OUTPUT); pinMode(IB2, OUTPUT); } void loop() { MA1_Forward(200); //Motor MA1 forward; PWM speed control delay(1000); MA2_Backward(200); //Motor MA1 backward; PWM speed control delay(1000); } void MA1_Forward(int Speed1) //fast decay; Speed = High duty-cycle { analogWrite(IA1, Speed1); digitalWrite(IA2, LOW); } void MA2_Backward(int Speed1) //slow decay; Speed = Low duty-cycle { int Speed2 = 255 - Speed1; analogWrite(IA1, Speed2); digitalWrite(IA2, HIGH); } void MB1_Forward(int Speed1) { analogWrite(IB1, Speed1); digitalWrite(IB2, LOW); } void MB2_Backward(int Speed1) { int Speed2 = 255 - Speed1; analogWrite(IB1, Speed2); digitalWrite(IB2, HIGH); }
Documents:
Related products