TOP Contributors

  1. MIKROE (2779 codes)
  2. Alcides Ramos (376 codes)
  3. Shawon Shahryiar (307 codes)
  4. jm_palomino (118 codes)
  5. Bugz Bensce (97 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 (139566 times)
  2. FAT32 Library (72041 times)
  3. Network Ethernet Library (57256 times)
  4. USB Device Library (47631 times)
  5. Network WiFi Library (43220 times)
  6. FT800 Library (42566 times)
  7. GSM click (29930 times)
  8. mikroSDK (28292 times)
  9. PID Library (26933 times)
  10. microSD click (26309 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: 4594 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

NeoMesh 915MHz Click

0

NeoMesh Click - 915MHz is a compact add-on board with a low-power, long-range transceiver, ideal for Mesh wireless networking. This board features the NC1000C-9, a wireless Mesh network module from NeoCortec. With an additional antenna that MikroE offers connected to the module’s u.Fl connector, you can create a fully functional wireless Mesh network node that will work in the Sub-GHz frequency band of 915MHz. The module has a generic application layer that can configured to suit applications.

[Learn More]

Buck 8 Click

0

Buck 8 Click is a high efficiency, wide voltage range, and high current synchronous step down (buck) DC-DC converter, featuring two enhanced modes that can be used to drive lighter loads with increased efficiency.

[Learn More]

Power/Reset Click

0

Power/Reset Click is equipped with two capacitive touch pads on a single Click board™.

[Learn More]