4 Channel I2C Motor Shield v1.1

From Elecrow
Jump to navigation Jump to search

Introduction

For Arduino beginners, there will always be problems when driving DC motors and servos. If you want to drive 4 motors and 2 servos, you need to build a platform to control their speed and direction of rotation. When the motor and steering gear are running, the current is large, and you will need a module to help you control the large current, such as a micro controller like Arduino.
Therefore, Elecrow has designed the driver board you need in this type of application. This module will help users solve the problem of high-current drive and control of the motor. You only need to plug it into the Arduino or Crowduino. This module is connected to the Arduino or Crowduino through the I2C bus. Start your application and you can control 4 channels through the I2C bus. Motor.
This driver board is designed based on the MOSFET H-bridge integrated circuit TB6612FNG, and its efficiency is higher than that of the transistor H-bridge driver. Compared with the L293D's average drive current of 600 mA per channel and 1.2 A pulse peak current, its output load capacity has doubled. Compared with the L298N's heat dissipation and peripheral diode freewheeling circuit, it does not require an external heat sink, and the peripheral circuit is simple. Only an external power supply filter capacitor can directly drive the motor, which is beneficial to reduce the system size. For the PWM signal, it supports frequencies up to 100 kHz, which also has greater advantages over the 5 kHz and 40 kHz of the above two chips.

Motor Drive Control:
a. PCA9685 outputs PWM signals to control two TB6612FNG motor drive circuits, and then control 4 channels motors respectively;
b. Motor control mode: forward/reverse/brake/stop.

Servo Control:
The servo plug is inserted into the socket on the 4 Channel I2C Motor Shield board, and the Arduino or Crowduino controls the servo to work through D8 and D9.

Model: ARS27361T

4 Channel I2C Motor Shield v1.1-0.png

Features

  • Logic control voltage: 2.7~5.5V
  • Motor power supply voltage: 6~15V
  • Single channel continuous drive output current: 1.2 A
  • Starting peak drive current: 2A/3.2 A (continuous pulse/single pulse)
  • Driving current Io: 2A
  • Maximum power consumption: 18W
  • Working temperature: -20 degrees Celsius to +85 degrees Celsius
  • Drive type: dual high-power H-bridge drive


Specification

4 Channel I2C Motor Shield v1.1-3.png

Interface Description

4 Channel I2C Motor Shield v1.1-4.png

Motor power supply voltage: ------> External power supply, which may be 6~13.5V depending on the motor you use;
Power indicator: ------> LED indicator of external power supply;
Motor driver: ------> TB6612FNG high-power H-bridge driver;
Drive ports: ------> 4 motor ports and 2 servo ports.

Usage

Use with Raspberry Pi

1. Open the I2C interface

1) Execute in the terminal:

sudo raspi-config
Select Interfacing Options -> I2C -> yes to start the i2C kernel driver

CurrentVoltagePower Monitor HAT for Raspberry Pi 2.png

Then restart the Raspberry Pi:

sudo reboot

2. When using the Raspberry Pi to demonstrate this routine, you only need to insert the module into the Raspberry Pi header, or connect it to the Raspberry Pi’s I2C interface via a Dupont cable, connect VCC to 3.3V and enter the following command to run the program.

sudo pip3 install adafruit-circuitpython-ina219
sudo apt-get install p7zip
wget http://www.waveshare.net/w/upload/6/69/Current-Power_Monitor_HAT_Code.7z
7zr x Current-Power_Monitor_HAT_Code.7z -r -o./Current-Power_Monitor_HAT
cd Current-Power_Monitor_HAT/RaspberryPi
python3 ina219.py

After the program runs, the bus voltage, sampling resistor differential voltage, input voltage, power, current and other values ​​will be output.