dcmotor7  2.0.0.0
Main Page

DC MOTOR 7 click

DC MOTOR 7 click is a dual brushed DC motor driving Click boardâ„¢, featuring the advanced PWM chopper-type integrated DC motor driver, labeled as TB67H400AFTG.

click Product page


Click library

  • Author : MikroE Team
  • Date : Jan 2020.
  • Type : I2C type

Software Support

We provide a library for the DcMotor7 Click as well as a demo application (example), developed using MikroElektronika compilers. The demo can run on all the main MikroElektronika development boards.

Package can be downloaded/installed directly form compilers IDE(recommended way), or downloaded from our LibStock, or found on mikroE github account.

Library Description

This library contains API for DcMotor7 Click driver.

Standard key functions :

  • Config Object Initialization function.

    void dcmotor7_cfg_setup ( dcmotor7_cfg_t *cfg );

  • Initialization function.

    DCMOTOR7_RETVAL dcmotor7_init ( dcmotor7_t *ctx, dcmotor7_cfg_t *cfg );

  • Default Configuration

    void dcmotor7_default_cfg ( dcmotor7_t *ctx );

Example key functions :

  • Functions for set port

    void dcmotor7_set_port ( dcmotor7_t *ctx, uint8_t port, uint8_t value );

  • Function for setting the motor in stand mode

    void dcmotor7_go_to_stand_by_mode ( dcmotor7_t *ctx, uint8_t motor );

  • Function for set PWM value for motor B

    void dcmotor7_set_pwm_motor_b ( dcmotor7_t *ctx, uint8_t state );

Examples Description

This application is a dual brushed DC motor driving.

The demo application is composed of two sections :

Application Init

Initialization driver init, enabled all output port, sets H-Bridge operation mode and Motor Digital tblk

void application_init ( void )
{
log_cfg_t log_cfg;
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
log_info( &logger, "---- Application Init ----" );
// Click initialization.
DCMOTOR7_MAP_MIKROBUS( cfg, MIKROBUS_1 );
dcmotor7_init( &dcmotor7, &cfg );
dcmotor7_default_cfg( &dcmotor7 );
}

Application Task

Set the motor A and the motor B to rotate clockwise and in the Counte clockwise direction, and between the change of direction, the motor stops the motor.

void application_task ( void )
{
dcmotor7_set_motor( &dcmotor7, DCMOTOR7_MOTOR_A, 0, 1 );
dcmotor7_set_motor( &dcmotor7, DCMOTOR7_MOTOR_B, 0, 1 );
Delay_ms( 500 );
Delay_ms( 2000 );
dcmotor7_set_motor( &dcmotor7, DCMOTOR7_MOTOR_A, 1, 0 );
dcmotor7_set_motor( &dcmotor7, DCMOTOR7_MOTOR_B, 1, 0 );
Delay_ms( 500 );
Delay_ms( 2000 );
}

Note

VM input - 10 V (min) to 47 V (max)

The full application code, and ready to use projects can be installed directly form compilers IDE(recommneded) or found on LibStock page or mikroE GitHub accaunt.

Other mikroE Libraries used in the example:

  • MikroSDK.Board
  • MikroSDK.Log
  • Click.DcMotor7

Additional notes and informations

Depending on the development board you are using, you may need USB UART click, USB UART 2 Click or RS232 Click to connect to your PC, for development systems with no UART to USB interface available on the board. The terminal available in all Mikroelektronika compilers, or any other terminal application of your choice, can be used to read the message.


DCMOTOR7_MOTOR_A
#define DCMOTOR7_MOTOR_A
Definition: dcmotor7.h:113
DCMOTOR7_MAP_MIKROBUS
#define DCMOTOR7_MAP_MIKROBUS(cfg, mikrobus)
Definition: dcmotor7.h:52
dcmotor7_cfg_setup
void dcmotor7_cfg_setup(dcmotor7_cfg_t *cfg)
Config Object Initialization function.
application_task
void application_task(void)
Definition: main.c:47
dcmotor7_set_motor
void dcmotor7_set_motor(dcmotor7_t *ctx, uint8_t motor, uint8_t in1, uint8_t in2)
Functions for set Motor.
DCMOTOR7_MOTOR_B
#define DCMOTOR7_MOTOR_B
Definition: dcmotor7.h:114
application_init
void application_init(void)
Definition: main.c:34
dcmotor7_init
DCMOTOR7_RETVAL dcmotor7_init(dcmotor7_t *ctx, dcmotor7_cfg_t *cfg)
Initialization function.
dcmotor7_cfg_t
Click configuration structure definition.
Definition: dcmotor7.h:165
dcmotor7_motor_stop
void dcmotor7_motor_stop(dcmotor7_t *ctx, uint8_t motor)
Motor stop function.
dcmotor7_default_cfg
void dcmotor7_default_cfg(dcmotor7_t *ctx)
Default Confuguration.