brushless12 2.0.0.0
Main Page

Brushless 12 click

Brushless 12 Click is a compact add-on board suitable for controlling BLDC motors with any MCU. This board features the L6235, DMOS fully integrated 3-phase motor driver with overcurrent protection from STMicroelectronics.

click Product page


Click library

  • Author : Stefan Filipovic
  • Date : Jun 2021.
  • Type : GPIO type

Software Support

We provide a library for the Brushless12 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 from NECTO Studio Package Manager(recommended way), downloaded from our LibStock™ or found on Mikroe github account.

Library Description

‍This library contains API for Brushless12 Click driver.

Standard key functions :

Example key functions :

Example Description

‍This example demonstrates the use of Brushless 12 click board.

The demo application is composed of two sections :

Application Init

‍Initializes the driver and sets the click default configuration.

void application_init ( void )
{
log_cfg_t log_cfg;
brushless12_cfg_t brushless12_cfg;
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
log_info( &logger, " Application Init " );
// Click initialization.
brushless12_cfg_setup( &brushless12_cfg );
BRUSHLESS12_MAP_MIKROBUS( brushless12_cfg, MIKROBUS_1 );
if ( brushless12_init( &brushless12, &brushless12_cfg ) == DIGITAL_OUT_UNSUPPORTED_PIN )
{
log_error( &logger, " Application Init Error. " );
log_info( &logger, " Please, run program again... " );
for ( ; ; );
}
brushless12_default_cfg( &brushless12 );
Delay_ms ( 100 );
log_info( &logger, " Application Task " );
}
#define BRUSHLESS12_MAP_MIKROBUS(cfg, mikrobus)
MikroBUS pin mapping.
Definition brushless12.h:90
void application_init(void)
Definition main.c:29

Application Task

‍Drives the motor in the forward direction for 5 seconds, then pulls brake for 2 seconds, and after that drives it in the reverse direction for 5 seconds, and pulls brake for 2 seconds. Each step will be logged on the USB UART where you can track the program flow.

void application_task ( void )
{
log_printf( &logger, "The motor turns forward! \r\n" );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
log_printf( &logger, "Pull brake! \r\n" );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
log_printf( &logger, "The motor turns in reverse! \r\n" );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
log_printf( &logger, "Pull brake! \r\n" );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
}
#define BRUSHLESS12_DIR_FORWARD
Definition brushless12.h:66
#define BRUSHLESS12_BRAKE
Definition brushless12.h:65
#define BRUSHLESS12_START
Definition brushless12.h:64
#define BRUSHLESS12_DIR_REVERSE
Definition brushless12.h:67
void application_task(void)
Definition main.c:65

The full application code, and ready to use projects can be installed directly from NECTO Studio Package Manager(recommended way), downloaded from our LibStock™ or found on Mikroe github account.

Other Mikroe Libraries used in the example:

  • MikroSDK.Board
  • MikroSDK.Log
  • Click.Brushless12

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. UART terminal is available in all MikroElektronika compilers.