Get the best of both worlds - add a high-performance battery charger to your solution that is both affordable and reliable
A
A
Hardware Overview
How does it work?
Charger 16 Click is based on the LT1571, a current-mode PWM step-down (buck) charger from Analog Devices. This battery charger represents a simple, efficient solution to fast-charge rechargeable batteries, including lithium-ion (Li-Ion), nickel-metal-hydride (NiMH), and nickel-cadmium (NiCd) using constant-current or constant-voltage control. The internal switch can deliver a 1.5A DC (2A peak current). A saturating switch operates at 500kHz, which provides high efficiency and a small charger size. Charger 16 Click communicates with MCU using two GPIO pins. The Enable pin, labeled as EN and routed to the CS pin of the mikroBUS™ socket, optimizes power consumption and is used for power ON/OFF purposes (driver operation permission). The onboard current sense resistor (R7) allows simple charge current
programming with 5% accuracy. Charge current can be programmed with the PWM from the mikroBUS™ socket by pulse width modulating current on a PROG pin with a switch Q2 to R7 at a frequency higher than a few kHz. Charge current will be proportional to the duty cycle of Q2 with full current at 100% duty cycle. This Click board™ also comes with an indication, red LED labeled as CHARGE, for battery near full-charge state when the charge current drops to 20% of the programmed value, and selectable constant voltage for 4.1V or 4.2V per cell with 0.6% accuracy. Selection can be performed by onboard SMD jumper labeled as CELL SEL. Besides, the charge termination-flag threshold can be reduced from the default 20% level to as low as 7.5% of the programmed full charge current by positioning an onboard R5 resistor of appropriate value.
The Charger 16 Click supports an external power supply for the LT1571, which can be connected to the input terminal labeled as VIN and should be within the range of 8V to 20V. When the input voltage is removed, its supply voltage pin drops to 0.7V below the battery voltage forcing the charger into a low-battery drain (5mA typical) Sleep mode. This Click board™ can only be operated with a 5V logic voltage level. The board must perform appropriate logic voltage level conversion before using MCUs with different logic levels. However, the Click board™ comes equipped with a library containing functions and an example code that can be used as a reference for further development.
Features overview
Development board
EasyPIC v7 is the seventh generation of PIC development boards specially designed to develop embedded applications rapidly. It supports a wide range of 8-bit PIC microcontrollers from Microchip and has a broad set of unique functions, such as a powerful onboard mikroProg programmer and In-Circuit debugger over USB-B. The development board is well organized and designed so that the end-user has all the necessary elements in one place, such as switches, buttons, indicators, connectors, and others. With four different connectors for each port, EasyPIC v7 allows you to connect accessory boards, sensors, and custom electronics more efficiently than ever. Each part of
the EasyPIC v7 development board contains the components necessary for the most efficient operation of the same board. An integrated mikroProg, a fast USB 2.0 programmer with mikroICD hardware In-Circuit Debugger, offers many valuable programming/debugging options and seamless integration with the Mikroe software environment. Besides it also includes a clean and regulated power supply block for the development board. It can use various external power sources, including an external 12V power supply, 7-23V AC or 9-32V DC via DC connector/screw terminals, and a power source via the USB Type-B (USB-B) connector. Communication options such as
USB-UART and RS-232 are also included, alongside the well-established mikroBUS™ standard, three display options (7-segment, graphical, and character-based LCD), and several different DIP sockets. These sockets cover a wide range of 8-bit PIC MCUs, from PIC10F, PIC12F, PIC16F, PIC16Enh, PIC18F, PIC18FJ, and PIC18FK families. EasyPIC v7 is an integral part of the Mikroe ecosystem for rapid development. Natively supported by Mikroe software tools, it covers many aspects of prototyping and development thanks to a considerable number of different Click boards™ (over a thousand boards), the number of which is growing every day.
Microcontroller Overview
MCU Card / MCU

Architecture
PIC
MCU Memory (KB)
24
Silicon Vendor
Microchip
Pin count
40
RAM (Bytes)
2048
You complete me!
Accessories
Li-Polymer Battery is the ideal solution for devices that demand a dependable and long-lasting power supply while emphasizing mobility. Its compatibility with mikromedia boards ensures easy integration without additional modifications. With a voltage output of 3.7V, the battery meets the standard requirements of many electronic devices. Additionally, boasting a capacity of 2000mAh, it can store a substantial amount of energy, providing sustained power for extended periods. This feature minimizes the need for frequent recharging or replacement. Overall, the Li-Polymer Battery is a reliable and autonomous power source, ideally suited for devices requiring a stable and enduring energy solution. You can find a more extensive choice of Li-Polymer batteries in our offer.
Used MCU Pins
mikroBUS™ mapper
Take a closer look
Click board™ Schematic

Step by step
Project assembly
Track your results in real time
Application Output
This Click board can be interfaced and monitored in two ways:
Application Output
- Use the "Application Output" window in Debug mode for real-time data monitoring. Set it up properly by following this tutorial.
UART Terminal
- Monitor data via the UART Terminal using a USB to UART converter. For detailed instructions, check out this tutorial.
Software Support
Library Description
This library contains API for Charger 16 Click driver.
Key functions:
charger16_cfg_setup
- Config Object Initialization function.charger16_init
- Initialization function.charger16_default_cfg
- Click Default Configuration function.
Open Source
Code example
The complete application code and a ready-to-use project are available through the NECTO Studio Package Manager for direct installation in the NECTO Studio. The application code can also be found on the MIKROE GitHub account.
/*!
* @file main.c
* @brief Charger 16 Click Example.
*
* # Description
* This library contains API for the Charger 16 Click driver.
* This demo application shows use of a Charger 16 Click board™.
*
* The demo application is composed of two sections :
*
* ## Application Init
* Initialization of GPIO module and log UART.
* After driver initialization the app set default settings.
*
* ## Application Task
* This is an example that shows the use of an Charger 16 Click board™.
* The app turns the battery charge on and off every 10 seconds.
* Results are being sent to the Usart Terminal where you can track their changes.
*
* @author Nenad Filipovic
*
*/
#include "board.h"
#include "log.h"
#include "charger16.h"
static charger16_t charger16; /**< Charger 16 Click driver object. */
static log_t logger; /**< Logger object. */
void application_init ( void )
{
log_cfg_t log_cfg; /**< Logger config object. */
charger16_cfg_t charger16_cfg; /**< Click config object. */
/**
* Logger initialization.
* Default baud rate: 115200
* Default log level: LOG_LEVEL_DEBUG
* @note If USB_UART_RX and USB_UART_TX
* are defined as HAL_PIN_NC, you will
* need to define them manually for log to work.
* See @b LOG_MAP_USB_UART macro definition for detailed explanation.
*/
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
log_info( &logger, " Application Init " );
// Click initialization.
charger16_cfg_setup( &charger16_cfg );
CHARGER16_MAP_MIKROBUS( charger16_cfg, MIKROBUS_1 );
if ( charger16_init( &charger16, &charger16_cfg ) == DIGITAL_OUT_UNSUPPORTED_PIN )
{
log_error( &logger, " Application Init Error. " );
log_info( &logger, " Please, run program again... " );
for ( ; ; );
}
charger16_default_cfg ( &charger16 );
log_info( &logger, " Application Task " );
Delay_ms( 100 );
}
void application_task ( void )
{
log_printf( &logger, "-----------------\r\n" );
log_printf( &logger, " Enable charging \r\n" );
charger16_enable_charging( &charger16 );
Delay_ms( 10000 );
log_printf( &logger, "------------------\r\n" );
log_printf( &logger, " Disable charging \r\n" );
charger16_disable_charging( &charger16 );
Delay_ms( 10000 );
}
void main ( void )
{
application_init( );
for ( ; ; )
{
application_task( );
}
}
// ------------------------------------------------------------------------ END