TOP Contributors

  1. MIKROE (2642 codes)
  2. Alcides Ramos (347 codes)
  3. Shawon Shahryiar (307 codes)
  4. jm_palomino (112 codes)
  5. Chisanga Mumba (90 codes)
  6. S P (73 codes)
  7. dany (71 codes)
  8. MikroBUS.NET Team (35 codes)
  9. NART SCHINACKOW (34 codes)
  10. Armstrong Subero (27 codes)

Most Downloaded

  1. Timer Calculator (136222 times)
  2. FAT32 Library (69489 times)
  3. Network Ethernet Library (55708 times)
  4. USB Device Library (45992 times)
  5. Network WiFi Library (41639 times)
  6. FT800 Library (40792 times)
  7. GSM click (28789 times)
  8. PID Library (26332 times)
  9. mikroSDK (26057 times)
  10. microSD click (25142 times)
Libstock prefers package manager

Package Manager

We strongly encourage users to use Package manager for sharing their code on Libstock website, because it boosts your efficiency and leaves the end user with no room for error. [more info]

< Back
mikroSDK Library

Charger 2 click

Rating:

5

Author: MIKROE

Last Updated: 2018-06-15

Package Version: 1.0.0.0

mikroSDK Library: 1.0.0.0

Category: Battery Charger

Downloaded: 4021 times

Followed by: 1 user

License: MIT license  

Charger 2 click is a LiPo battery charger with the additional monitoring IC onboard. This Click board as a whole, offers unpreceded LiPo battery charging and monitoring solution for 4.2V LiPo batteries, with the capacity up to 7000 mAh.

No Abuse Reported

Do you want to subscribe in order to receive notifications regarding "Charger 2 click" changes.

Do you want to unsubscribe in order to stop receiving notifications regarding "Charger 2 click" changes.

Do you want to report abuse regarding "Charger 2 click".

  • mikroSDK Library 2.0.0.0
  • Comments (0)
DOWNLOAD LINK RELATED COMPILER CONTAINS
mikroBasic PRO for ARM
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroBasic PRO for AVR
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroBasic PRO for dsPIC30/33 & PIC24
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroBasic PRO for FT90x
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroBasic PRO for PIC
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroBasic PRO for PIC32
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroC PRO for ARM
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroC PRO for AVR
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroC PRO for dsPIC30/33 & PIC24
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroC PRO for FT90x
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroC PRO for PIC
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroC PRO for PIC32
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroPascal PRO for ARM
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroPascal PRO for AVR
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroPascal PRO for dsPIC30/33 & PIC24
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroPascal PRO for FT90x
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroPascal PRO for PIC
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroPascal PRO for PIC32
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc

mikroSDK Library Blog

Charger 2 click

Charger 2 click

Native view of the Charger 2 click board.

View full image
Charger 2 click

Charger 2 click

Front and back view of the Charger 2 click board.

View full image

Library Description

This library provides generic functions for working with the Click board™.

Key functions:

  • uint8_t charger2_writeReg( uint8_t register_address, uint8_t transfer_data ) - The function writes one-byte data to the register.
  • uint8_t charger2_readReg( uint8_t register_address, uint8_t *valueOut, uint8_t nBytes ) - The function reads the desired number of data bytes.
  • uint8_t charger2_readData( uint8_t dataMode, uint32_t *dataOut ) - The function reads the desired data from data registers and converts this data to the appropriate unit.

Examples Description

The application is composed of three sections:

  • System Initialization - Initializes peripherals and pins.
  • Application Initialization - Initializes I2C driver, performs the counter and accumulator reset and puts the device in operating mode with the 14-bit ADC resolution.
  • Application Task - (code snippet) - Reads the all necessary information for the battery charging status and logs this results on UART. Repeats operation every second. The LED diodes are used to indicate the Vcc presence when this voltage is in operating range, and to show the charging status.
void applicationTask()
{
 charger2_readData( _CHARGER2_GAS_GAUGE_CHARGE_DATA, &batteryData );
 resultsLogger();
 charger2_readData( _CHARGER2_CONV_NUMBER, &batteryData );
 resultsLogger();
 charger2_readData( _CHARGER2_SHUNT_VOLTAGE, &batteryData );
 resultsLogger();
 charger2_readData( _CHARGER2_BATTERY_VOLTAGE, &batteryData );
 resultsLogger();
 charger2_readData( _CHARGER2_TEMPERATURE, &batteryData );
 resultsLogger();
 charger2_readData( _CHARGER2_BATTERY_CURRENT, &batteryData );
 resultsLogger();
 mikrobus_logWrite( "", _LOG_LINE );

 Delay_ms( 1000 );
}

Additional Functions:

  • void resultsLogger() - Logs the desired data for the battery charging status.

The full application code, and ready to use projects can be found on our Libstock page.

Other mikroE Libraries used in the example:

  • Conversions
  • I2C
  • UART

Additional notes and information

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.

ALSO FROM THIS AUTHOR

CAN Isolator click

0

CAN Isolator click provides isolated CAN communication. It carries the ADM3053 signal and power isolated CAN transceiver with an integrated isolated DC-to-DC converter.

[Learn More]

Thermo 11 click

5

Thermo 11 Click is a Click board equipped with the sensor IC, which can digitize temperature measurements between -55°C and +150°C so that the temperature measurement data can be processed by the host MCU.

[Learn More]

Cap Touch 2 click example

0

This example is made to demonstrate the operation of the Cap Touch 2 click.

[Learn More]