MIC23099 click carries the MIC23099, a single AA/AAA cell step-down/step-up regulator with battery monitoring. The click is designed to run on a 3.3V power supply. It communicates with the target microcontroller over the following pins on the mikroBUS™ line: CS, INT.
How the click works
MIC23099 click has three screw terminals (Buck 1V, GND and Boost 3V3) which are outputs for connecting some external consumer.
The low-battery level is indicated by an onboard STAT LED.
Note: The MIC23099 is not a battery charger and it needs a battery to work properly. The battery is not included.
MIC23099 features
Specifications
Type
Buck-Boost
Applications
Voltage regulation for portable devices with AA or AAA batteries
On-board modules
MIC23099 – a high-efficiency, low-noise, dual output, integrated power management solution for single-cell alkaline or NiMH battery applications
Key Features
The low-battery level is indicated by an onboard STAT LED
Interface
GPIO
Feature
No ClickID
Compatibility
mikroBUS™
Click board size
L (57.15 x 25.4 mm)
Input Voltage
3.3V
Pinout diagram
This table shows how the pinout on MIC23099 click corresponds to the pinout on the mikroBUS™ socket (the latter shown in the two middle columns).
Programming
Code examples for MIC23099 click, written for MikroElektronika hardware and compilers are available on Libstock.
Code snippet
The following code snippet sets the EN pin to high, to enable the operation of this click.
01 sbit MIC23099_EN_PIN at GPIOD_ODR.B13; 02 void systemInit() 03 { 04 GPIO_Digital_Output( &GPIOD_ODR, _GPIO_PINMASK_13 ); 05 } 06 07 void MIC23099_Click_Init() 08 { 09 MIC23099_EN_PIN = 1; 10 } 11 12 void main() 13 { 14 systemInit(); 15 MIC23099_Click_Init(); 16 }