dcmotor  2.0.0.0
Main Page

DC MOTOR click

< DC MOTOR click is a DC motor driver board in mikroBUS form factor. It features the DRV8833RTYH-Bridge motor driver, 74HC4053 multiplexer and two screw terminals >

click Product page


Click library

  • Author : Nikola Peric
  • Date : Feb 2022.
  • Type : PWM type

Software Support

We provide a library for the DcMotor 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 DcMotor Click driver.

Standard key functions :

  • Config Object Initialization function.

    void dcmotor_cfg_setup ( dcmotor_cfg_t *cfg );

  • Initialization function.

    DCMOTOR_RETVAL dcmotor_init ( dcmotor_t *ctx, dcmotor_cfg_t *cfg );

Example key functions :

  • Start PWM module.

    void dcmotor_pwm_start ( dcmotor_t *ctx );

  • Enable the motor function.

    void dcmotor_enable ( dcmotor_t *ctx );

  • Set sleep mode function.

    void dcmotor_sleep_mode ( dcmotor_t *ctx );

    Examples Description

This application change the speed and direction of DC Motor.

The demo application is composed of two sections :

Application Init

Initialization driver enable's - GPIO, PWM initialization, set PWM duty cycle and PWM frequency, enable the motor, start PWM and start write log.

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.
DCMOTOR_MAP_MIKROBUS( cfg, MIKROBUS_1 );
dcmotor_init( &dcmotor, &cfg );
log_printf( &logger, " Initialization PWM \r\n" );
dcmotor_set_duty_cycle ( &dcmotor, 0.0 );
dcmotor_pwm_start( &dcmotor );
log_printf( &logger, "---------------------\r\n" );
}

Application Task

This is a example which demonstrates the use of DC Motor Click board. DC Motor Click communicates with register via PWM interface. It shows moving in the left direction from slow to fast speed and from fast to slow speed. Results are being sent to the Usart Terminal where you can track their changes.

{
static int8_t duty_cnt = 1;
static int8_t duty_inc = 1;
float duty = duty_cnt / 10.0;
if ( dcmotor_direction == 1 )
{
dcmotor_sleep_mode ( &dcmotor );
log_printf( &logger, "> CLOCKWISE <\r\n" );
dcmotor_enable ( &dcmotor );
}
else
{
dcmotor_sleep_mode ( &dcmotor );
log_printf( &logger, "> COUNTER CLOCKWISE <\r\n" );
dcmotor_enable ( &dcmotor );
}
dcmotor_set_duty_cycle ( &dcmotor, duty );
Delay_ms( 500 );
if ( 10 == duty_cnt )
{
duty_inc = -1;
if ( dcmotor_direction == 1 )
{
}
else if ( dcmotor_direction == 0 )
{
}
}
else if ( 0 == duty_cnt )
{
duty_inc = 1;
}
duty_cnt += duty_inc;
}

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.DcMotor

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.


dcmotor_right_direction_slow
void dcmotor_right_direction_slow(dcmotor_t *ctx)
Select right direction, slow decay function.
dcmotor_left_direction_slow
void dcmotor_left_direction_slow(dcmotor_t *ctx)
Select left direction, slow decay function.
dcmotor_pwm_start
void dcmotor_pwm_start(dcmotor_t *ctx)
Start PWM module.
dcmotor_cfg_t
Click configuration structure definition.
Definition: dcmotor.h:115
dcmotor_direction
uint8_t dcmotor_direction
Definition: main.c:34
dcmotor_enable
void dcmotor_enable(dcmotor_t *ctx)
Enable the motor function.
DCMOTOR_MAP_MIKROBUS
#define DCMOTOR_MAP_MIKROBUS(cfg, mikrobus)
Definition: dcmotor.h:52
application_task
void application_task()
Definition: main.c:67
application_init
void application_init(void)
Definition: main.c:36
dcmotor_cfg_setup
void dcmotor_cfg_setup(dcmotor_cfg_t *cfg)
Config Object Initialization function.
dcmotor_init
DCMOTOR_RETVAL dcmotor_init(dcmotor_t *ctx, dcmotor_cfg_t *cfg)
Initialization function.
dcmotor_sleep_mode
void dcmotor_sleep_mode(dcmotor_t *ctx)
Set sleep mode function.
dcmotor_set_duty_cycle
void dcmotor_set_duty_cycle(dcmotor_t *ctx, float duty_cycle)
Generic sets PWM duty cycle.