hbridge9 2.0.0.0
Main Page

H-Bridge 9 click

‍H-Bridge 9 Click is a compact add-on board that contains six MOSFET half-bridge outputs. This board features the L99UDL01, a six-channel half-bridge driver monolithic integrated circuit that is PWM configurable and current regulated from STMicroelectronics.

click Product page


Click library

  • Author : Stefan Filipovic
  • Date : Aug 2021.
  • Type : SPI type

Software Support

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

Standard key functions :

Example key functions :

Example Description

‍This example demonstrates the use of H-Bridge 9 click board.

The demo application is composed of two sections :

Application Init

‍Initializes the driver and performs the click default configuration which will set the OUT1 to LOW, OUT2 to HIGH polarity, and the runtime to 1000ms.

void application_init ( void )
{
log_cfg_t log_cfg;
hbridge9_cfg_t hbridge9_cfg;
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
log_info( &logger, " Application Init " );
// Click initialization.
hbridge9_cfg_setup( &hbridge9_cfg );
HBRIDGE9_MAP_MIKROBUS( hbridge9_cfg, MIKROBUS_1 );
err_t init_flag = hbridge9_init( &hbridge9, &hbridge9_cfg );
if ( SPI_MASTER_ERROR == init_flag )
{
log_error( &logger, " Application Init Error. " );
log_info( &logger, " Please, run program again... " );
for ( ; ; );
}
init_flag = hbridge9_default_cfg ( &hbridge9 );
if ( HBRIDGE9_ERROR == init_flag )
{
log_error( &logger, " Default Config Error. " );
log_info( &logger, " Please, run program again... " );
for ( ; ; );
}
log_info( &logger, " Application Task " );
}
#define HBRIDGE9_MAP_MIKROBUS(cfg, mikrobus)
MikroBUS pin mapping.
Definition hbridge9.h:435
@ HBRIDGE9_ERROR
Definition hbridge9.h:497
void application_init(void)
Definition main.c:33

Application Task

‍Sends an actuation pulse every 5 seconds which will run the motor for a certain amount of time as set by default configuration.

void application_task ( void )
{
log_printf( &logger, " Actuation pulse has been sent. \r\n\n" );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
}
void application_task(void)
Definition main.c:75

Note

‍The Voltage should be supplied with 6 to 18V power supply. Make sure to use a motor that operates in the above voltage range.

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

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.