Seeed-Studio / Grove_I2C_Motor_Driver_v1_3

Grove - I2C Motor Driver v1.3 - L298P&ATmega8L
MIT License
10 stars 14 forks source link

Grove - I2C Motor Driver v1.3 & Grove - I2C Motor Driver (L298P)

This library can be used for both I2C Motor Driver v1.3 and I2C Motor Driver (L298P) New library can run with old (L298) firmware but PWM frequence won't work. You should upgrade library and firmware on (L298): library V1.03 with firmware 103 for example.

I2C Motor Driver v1.3

105020093_wiki

I2C Motor Driver (L298P)

This library can control both I2C Motor Driver V1.3 and I2C Motor Driver (L298P). Both version use a L298P as motor controler but V1.3 uses a Atmel ATmega8L and (L298) uses a STM32F03. You must upgrade (L298P) to last firmwre to be able to change PWM frequence.

The Grove - I2C Motor Drive can directly control Stepper Motor or DC Motor. Its heart is a dual channel H-bridge driver chip(L298P)that can handle current up to 2A per channel, controlled by an Atmel ATmega8L which handles the I2C communication with for example an Arduino. Both motors can be driven simultaneously while set to a different speed and direction. It can power two brushed DC motors or one 4-wire two-phase stepper motor. It requires a 6V to 15V power supply to power the motor and has an onboard 5V voltage regulator which can power the I2C bus and the Arduino(selectable by jumper). All driver lines are protected by diodes from back-EMF.

Installation

git clone https://github.com/Seeed-Studio/Grove_I2C_Motor_Driver_v1_3.git

or download the zip.

Usage

Simply copy the Grove_I2C_Motor_Driver_v1_3 folder to your Arduino library collection. For example, arduino-1.6.12/libraries. Next time you run the Arduino IDE, you'll have a new option in Sketch -> Include Library -> Grove_I2C_Motor_Driver_v1_3. Review the included examples in Grove_I2C_Motor_Driver_v1_3/examples.

1. Set the address

On I2C Motor Driver V1.3

On I2C Motor Driver (L298) STM32

Default I2C address is 0x0f

Add jumper on I2C adress connector to change the address

2. Drive 2 DC motors

motor_id represents which motor to use. You can fill MOTOR1 or MOTOR2.

_speed represents the speed you set to the motor. You can fill -100~100 here. When _speed>0, DC motor runs clockwise, while _speed<0, DC motor runs anticlockwise. And the bigger the absolute value of _speed, the faster the speed of DC motor.

With stop() function, you are able to stop a running DC motor.

motor_id represents which motor to use. You can fill MOTOR1 or MOTOR2.

_frequence represents the PWM frequence for (L298). For V1.3, choose among: F_31372Hz, F_3921Hz, F_490Hz, F_122Hz, F_30Hz Note: Only use frequence when (L298) is upgraded with the latest firmware.

3. Drive a Stepper Motor

eg:

  1. Set step as 512 and drive a 4 phase stepper motor.
    StepperRun(512, 0);

    Or

    StepperRun(512);
  2. Set step as 512 and drive a 2 phase stepper motor.
    StepperRun(512, 1);

Note that number of pulses for "step" is 4 (for 2-phase motor), and the number of steps of one motor turn is dependent on the spec of the stepping motor. For example, for the motor with 100 pulse per turn (3.6 degree per pulse), step=25 will make one turn of the motor.

Stepper motor speed cannot be changed from the library. A library update could do it. Contribution welcome!