Driver click
Driver Click features an IC with seven integrated high-current sink drivers, which can be used to drive a wide range of loads via simple parallel interface. These integrated drivers use high-efficiency MOSFETs for improved thermal performance.
click Product page
Click library
- Author : MikroE Team
- Date : jan 2020.
- Type : GPIO type
Software Support
We provide a library for the Driver 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 Driver Click driver.
Standard key functions :
- Config Object Initialization function.
void driver_cfg_setup ( driver_cfg_t *cfg );
- Initialization function.
DRIVER_RETVAL driver_init ( driver_t *ctx, driver_cfg_t *cfg );
Example key functions :
- IN1 Set function.
void driver_set_in1 ( driver_t *ctx, uint8_t state );
- IN2 Set function.
void driver_set_in2 ( driver_t *ctx, uint8_t state );
- IN3 Set function.
void driver_set_in3 ( driver_t *ctx, uint8_t state );
Examples Description
This application offering a nine-pole spring terminal that can be used to implement and realize a wide range of different applications
The demo application is composed of two sections :
Application Init
Initializes GPIO driver and selects which inputs will be set in operation. Bits from 0 to 6 (selectIN) select inputs from IN1 to IN7, respectively.
{
log_cfg_t log_cfg;
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
log_info(&logger, "---- Application Init ----");
}
#define DRIVER_MAP_MIKROBUS(cfg, mikrobus)
Definition driver.h:65
void driver_cfg_setup(driver_cfg_t *cfg)
Config Object Initialization function.
DRIVER_RETVAL driver_init(driver_t *ctx, driver_cfg_t *cfg)
Initialization function.
void application_init(void)
Definition main.c:34
Click configuration structure definition.
Definition driver.h:124
Application Task
Performs cycles in which selected inputs will be turned on for pulseWidth delay time one by one. When one input is turned on, it will be turned off after desired delay time before the next input be turned on.
{
uint8_t select_in;
uint8_t temp;
uint8_t count;
select_in = 0x7F;
temp = 1;
for (count = 0; count < 7; count++)
{
switch ( select_in & temp )
{
case 0x01 :
{
log_printf( &logger, "OUT1 enabled\r\n" );
log_printf( &logger, "OUT1 disabled\r\n" );
break;
}
case 0x02 :
{
log_printf( &logger, "OUT2 enabled\r\n" );
log_printf( &logger, "OUT2 disabled\r\n" );
break;
}
case 0x04 :
{
log_printf( &logger, "OUT3 enabled\r\n" );
log_printf( &logger, "OUT3 disabled\r\n" );
break;
}
case 0x08 :
{
log_printf( &logger, "OUT4 enabled\r\n" );
log_printf( &logger, "OUT4 disabled\r\n" );
break;
}
case 0x10 :
{
log_printf( &logger, "OUT5 enabled\r\n" );
log_printf( &logger, "OUT5 disabled\r\n" );
break;
}
case 0x20 :
{
log_printf( &logger, "OUT6 enabled\r\n" );
log_printf( &logger, "OUT6 disabled\r\n" );
break;
}
case 0x40 :
{
log_printf( &logger, "OUT7 enabled\r\n" );
log_printf( &logger, "OUT7 disabled\r\n" );
break;
}
default :
{
break;
}
}
log_printf( &logger, "----------------------\r\n" );
temp <<= 1;
Delay_ms ( 1000 );
}
}
#define DISABLE_IN
Definition driver.h:93
#define PULSE_WIDTH
Definition driver.h:91
#define ENABLE_IN
Definition driver.h:92
void driver_set_in4(driver_t *ctx, uint8_t state)
IN4 Set function.
void driver_set_in3(driver_t *ctx, uint8_t state)
IN3 Set function.
void driver_set_in7(driver_t *ctx, uint8_t state)
IN7 Set function.
void driver_set_in6(driver_t *ctx, uint8_t state)
IN6 Set function.
void driver_set_in2(driver_t *ctx, uint8_t state)
IN2 Set function.
void driver_set_in1(driver_t *ctx, uint8_t state)
IN1 Set function.
void driver_set_in5(driver_t *ctx, uint8_t state)
IN5 Set function.
void application_task(void)
Definition main.c:59
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.Driver
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.