BATT-MON 2 click
BATT-MON 2 Click is a compact add-on board representing a battery monitoring solution. This board features the MAX17262, an ultra-low power I2C-configurable fuel-gauge IC which implements the ModelGaugeā¢ m5 algorithm from Analog Devices. The MAX17262 monitors a single-cell battery pack (best performance for batteries with 100mAhr to 6Ahr capacity), providing precision measurements of current, voltage, and temperature, and supporting internal current sensing for up to 3.1A pulse current. The battery pack's temperature is measured using an internal temperature sensor or external thermistor.
click Product page
Click library
- Author : Stefan Filipovic
- Date : Jan 2022.
- Type : I2C type
Software Support
We provide a library for the BATT-MON 2 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 BATT-MON 2 Click driver.
Standard key functions :
battmon2_cfg_setup
Config Object Initialization function.
void battmon2_cfg_setup(battmon2_cfg_t *cfg)
BATT-MON 2 configuration object setup function.
BATT-MON 2 Click configuration object.
Definition battmon2.h:248
battmon2_init
Initialization function.
err_t battmon2_init(battmon2_t *ctx, battmon2_cfg_t *cfg)
BATT-MON 2 initialization function.
BATT-MON 2 Click context object.
Definition battmon2.h:231
Example key functions :
battmon2_get_battery_voltage
This function reads the battery voltage in mV.
err_t battmon2_get_battery_voltage(battmon2_t *ctx, float *voltage)
BATT-MON 2 get battery voltage function.
battmon2_get_battery_current
This function reads the battery current in mA.
err_t battmon2_get_battery_current(battmon2_t *ctx, float *current)
BATT-MON 2 get battery current function.
battmon2_get_battery_percentage
This function reads the battery remaining SOC percentage.
err_t battmon2_get_battery_percentage(battmon2_t *ctx, float *percentage)
BATT-MON 2 get battery percentage function.
Example Description
This example demonstrates the use of BATT-MON 2 click board by monitoring
the measurements of battery voltage, current, capacity, percentage, time-to-empty or time-to-full, as well as the chip internal temperature.
The demo application is composed of two sections :
Application Init
Initializes the driver and checks the communication by reading and verifying the device ID.
{
log_cfg_t log_cfg;
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
log_info( &logger, " Application Init " );
if ( I2C_MASTER_ERROR ==
battmon2_init( &battmon2, &battmon2_cfg ) )
{
log_error( &logger, " Communication init." );
for ( ; ; );
}
{
log_error( &logger, " Check communication." );
for ( ; ; );
}
log_info( &logger, " Application Task " );
}
@ BATTMON2_ERROR
Definition battmon2.h:266
#define BATTMON2_MAP_MIKROBUS(cfg, mikrobus)
MikroBUS pin mapping.
Definition battmon2.h:218
err_t battmon2_check_communication(battmon2_t *ctx)
BATT-MON 2 check communication function.
void application_init(void)
Definition main.c:30
Application Task
Reads and displays on the USB UART the measurements of battery voltage, current, capacity, percentage,
time-to-empty or time-to-full, as well as the chip internal temperature approximately once per second.
{
float voltage, capacity, percentage, current, die_temp;
{
log_printf ( &logger, " Voltage: %.1f mV \r\n", voltage );
}
{
log_printf ( &logger, " Current: %.1f mA \r\n", current );
}
{
log_printf ( &logger, " Capacity: %.1f mAh \r\n", capacity );
}
{
log_printf ( &logger, " Percentage: %.1f %% \r\n", percentage );
}
if ( current > 0 )
{
uint32_t time_to_full;
{
log_printf ( &logger, " Time to full: %uh %umin %usec \r\n", ( uint16_t ) ( time_to_full / 3600 ),
( uint16_t ) ( time_to_full % 3600 ) / 60,
( uint16_t ) ( time_to_full % 60 ) );
}
}
else if ( current < 0 )
{
uint32_t time_to_empty;
{
log_printf ( &logger, " Time to empty: %uh %umin %usec \r\n", ( uint16_t ) ( time_to_empty / 3600 ),
( uint16_t ) ( time_to_empty % 3600 ) / 60,
( uint16_t ) ( time_to_empty % 60 ) );
}
}
{
log_printf ( &logger, " Internal temperature: %.2f C \r\n\n", die_temp );
}
Delay_ms ( 1000 );
}
@ BATTMON2_OK
Definition battmon2.h:265
err_t battmon2_get_die_temperature(battmon2_t *ctx, float *temperature)
BATT-MON 2 get die temperature function.
err_t battmon2_get_battery_capacity(battmon2_t *ctx, float *capacity)
BATT-MON 2 get battery capacity function.
err_t battmon2_get_battery_ttf(battmon2_t *ctx, uint32_t *time_to_full)
BATT-MON 2 get battery ttf function.
err_t battmon2_get_battery_tte(battmon2_t *ctx, uint32_t *time_to_empty)
BATT-MON 2 get battery tte function.
void application_task(void)
Definition main.c:66
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.BATTMON2
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.