Skip to content

Latest commit

 

History

History

docs

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Arduino PowerManagement Documentation

Usage

#include "PowerManagement.h"

Battery battery; 
Charger charger;
Board board;

void setup(){
    battery.begin();
    charger.begin();
    board.begin();
    /* Rest of your setup() code */
}

Battery

The Battery class in the PowerManagement library provides a comprehensive set of tools for monitoring and managing the health and usage of your battery. This includes real-time data on voltage, current, power, temperature, and overall battery capacity, enabling you to optimize your application for better energy efficiency and battery longevity.

Voltage Monitoring

Method Data Type Description
battery.voltage() float Read the current voltage of the battery.
battery.averageVoltage() float Get the average voltage.
battery.minimumVoltage() float Access the minimum voltage since the last reset.
battery.maximumVoltage() float Access the maximum voltage since the last reset.

Current Monitoring

Method Data Type Description
battery.current() int16_t Measure the current flow from the battery.
battery.averageCurrent() int16_t Obtain the average current.
battery.minimumCurrent() int16_t Access the minimum current since the last reset.
battery.maximumCurrent() int16_t Access the maximum current since the last reset.

Power Monitoring

Method Data Type Description
battery.power() int16_t Calculate the current power usage in milliwatts (mW).
battery.averagePower() int16_t Get the average power usage in milliwatts (mW).

Temperature Monitoring

Method Data Type Description
battery.internalTemperature() uint8_t Read the internal temperature of the battery gauge chip.
battery.averageInternalTemperature() uint8_t Obtain the average internal temperature.

Capacity and State of Charge

Method Data Type Description
battery.remainingCapacity() uint16_t Monitor the battery's remaining capacity in mAh.
battery.percentage() uint8_t Get the battery's state of charge as a percentage (0-100%).

Time Estimates

Method Data Type Description
battery.timeToEmpty() int32_t Estimate the time until the battery is empty.
battery.timeToFull() int32_t Estimate the time until the battery is fully charged.

Configuring Battery Characteristics

To ensure accurate readings and effective battery management, you can configure the BatteryCharacteristics struct to match the specific attributes of your battery:

BatteryCharacteristics characteristics = BatteryCharacteristics();

characteristics.capacity = 200; // Set the battery's capacity in mAh
characteristics.emptyVoltage = 3.3f; // Voltage at which the battery is considered empty
characteristics.chargeVoltage = 4.2f; // Voltage at which the battery is charged
characteristics.endOfChargeCurrent = 50; // End of charge current in mA
characteristics.ntcResistor = NTCResistor::Resistor10K; // Set NTC resistor value (10K or 100K Ohm)
characteristics.recoveryVoltage = 3.88f; // Voltage to reset empty detection

This configuration ensures that the Battery class operates with parameters that match your battery’s specifications, providing more accurate and reliable monitoring and management.

Charger

Charging a LiPo battery is done in three stages. This library allows you to monitor what charging stage we are in as well as control some of the chagring parameters.

  • Pre-charge - First phase of the charging process where the battery is charged at a low constant current and is slowly increased until it reaches the full charge current

  • Constant Current - Second phase of the charging process where the battery is charging in constant current mode until it reaches the voltage where the it's considered fully charged. (4.2V)

  • Constant Voltage - Third phase of the charging process where the battery is kept at the fully charged voltage and current is slowly decreased to the end of charge current.

Get charger status

You can find out what stage the charger is in by calling the getState() method.

It will return a value of ChargeStatus which can be one of the above:

  • preCharge - First stage of the charging process
  • fastChargeConstantCurrent - Second stage of the charging process
  • fastChargeConstantVoltage - Last stage of the charging process
  • endOfCharge - If the battery is still connected, the charger will ensure it's kept at 4.2V by topping up the voltage to avoid self discharge.
  • done - Battery is fully charged
  • timerFaultError - The timer that is monitoring the charge status has encountered an error.
  • thermistorSuspendError - Charging was suspended due to overheating
  • chargerDisabled - Charger is disabled
  • batteryOvervoltageError - Charging was suspended due to an overvoltage fault
  • chargerBypassed - in this state, the charger is bypassed completely and the USB voltage is powering the board

Set charging parameters

This library allows you to change the following charging parameters of the charging process. Please be careful with these and make sure they are supported by the battery you are using as the wrong values might damage your board or the battery.

Charge Voltage

Set the charging voltage in volts (V). Before changing the default values please be aware that changing the charge voltage can damage your battery.

charger.setChargeVoltage(3.80);

The current charging voltage is set to 4.2V by default. This method accepts float values representing voltages from 3.50V to 4.44V in steps of 0.02V (3.50, 3.52, ...., 4.42, 4.44)

Charge Current

Set the current used in the constant charging phase. This method accepts integer values representing milli amperes (mA).

charger.setChargeCurrent(1000);

The default charging current is set to 100mA. Supported values: 100, 150, 200, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 800, 850, 900, 950, 1000mA

End of Charge Current

This is the current used in the end-of-charge phase where the voltage is kept at 4.2V. The charger IC determines when to terminate the charge cycle based on the current going into the battery dropping below the given threshold during the constant voltage phase. At this point, the battery is considered fully charged and charging is completed. If charge termination is disabled, the charge current will naturally decay to 0mA, but this is rarely done in practice. This is because the amount of charge going into the battery exponentially decreases during CV charging, and it would take a significantly longer time to recharge the battery with a very little increase in capacity.

charger.setEndOfChargeCurrent(5);

The default end-of-charge current is set to 5 mA. Supported values: 5, 10, 20, 30, 50mA.

Input Current Limit

The input current limit (ILIM) safeguards the device by preventing overcurrent, ensuring the charging current is within safe levels for the battery, and adapting to the maximum current the power source can provide, allowing you to charge and use the system at the same time.

charger.setInputCurrentLimit(1500);

The default input current limit is set to 1.5A. Supported values: 10, 15, 20, 25, 30, 35, 40, 45, 50, 100, 150, 200, 300, 400, 500, 600, 700, 800, 900, 1000, 1500mA

Board

The PF1550 power management IC has three LDO regulators, and three DCDC converters, each of these have a configurable voltage range and can be turned on and off. The implementation of these regulators and the power rails rails differs from board to board, for example on the Nicla Vision, some of the rails are dedicated to the voltages required by the camera, while on the Portenta H7 some of these rails are dedicated to the rich USB-C functionality.

Changing some voltages on some rails might break the boards functionality or even damage the board, so not all of these are available through this library.

However there is one power rail they all have in common, and that is the external power rail. The external power rail is labeled as 3V3 on all of these boards and can be used to power external peripherals.

Using this library we can turn it off, and thus the external peripherals to save power:

board.setExternalSwitch(false);

or change its voltage between the following values (1.10V, 1.20V, 1.35V, 1.50V, 1.80V, 2.50V, 3.00V and 3.30V)

board.setExternalVoltage(1.80);

This method takes a float parameter and automatically converts it internally to the specific internal representation, but any voltage that is not one of the enumerated walue will not work and get this method to return false.

This power rail is the only rail that can be modified on the Portenta H7 board, while Portenta C33 and Nicla Vision have some extra tricks up their sleeves.

Portenta C33

The Portenta C33 board offers the most flexibility in power delivery out of the three boards. It allows you to tweak the ADC voltage as well as the reference voltage, allowing for more precise analog sensor readings, as well as toggle the power to the ESP32 chip used for WiFi and BLE to save power.

To turn off the ESP32 and Secure Element this method can be used:

board.setCommunicationSwitch(false);

NOTE: This command turns off the power to the Secure Element as well, so if you would like to connect your board to Ethernet you will lose access to secure communications.

To change the reference voltage (AREF) use this method:

board.setReferenceVoltage(1.80);

The reference regulator can be set from 1.80V to 3.30V in steps of 0.10V. Any value outside this range or with different steps will not be accepted by the library.

To change the analog voltage (AVCC) use this method:

board.setAnalogVoltage();

The analog voltage can be set to any of the following values: 0.75V, 0.80V, 0.85V, 0.90V, 0.95V, 1.00V, 1.05V, 1.10V, 1.15V, 1.20V, 1.25V, 1.30V, 1.35V, 1.40V, 1.45V, 1.50V, 1.80V, 1.90V, 2.00V, 2.10V, 2.20V, 2.30V, 2.40V, 2.50V, 2.60V, 2.70V, 2.80V, 2.90V, 3.00V, 3.10V, 3.20V, 3.30V. Any value outside this range or with different steps will not be accepted by the library.

Nicla Vision

On the Nicla Vision board you can turn the rails that power the cameras and ToF sensor on and off:

board.setCameraSwitch(false);

NOTE: Any change to the power rails persists even if the board is disconnected from power. Make sure you design your solution accordingly.

Low Power

Sleep Modes

The Renesas and ST chips that are supported by this library have a slightly different way of handling sleep, and very different ways of calling those modes. For example ST calls the deepest sleep mode Standby while Renesas calls the most light sleep mode Standby. To reduce the confusion, and to have a universal API for both architectures we have selected two sleep modes and simply called them: Sleep and Standby:

Sleep

  • Function: Reduces the microcontroller's power usage to about half of its normal consumption.
  • Effect: Upon waking up from this mode, the execution of your program resumes exactly where it stopped. This is particularly useful for applications that require a quick resume with minimal power savings.
  • Wake-Up Triggers: Differ from board to board.

Standby

  • Function: Significantly reduces power usage to approximately 100uA-300uA (when all peripherals are off), making it ideal for long-term, battery-dependent operations.
  • Effect: Unlike Sleep Mode, waking up from standby Mode restarts the board, triggering the void setup() function. This behavior is suitable for scenarios where a full reset is acceptable or desired upon waking up.
  • Wake-Up Triggers: Both board can be configured to wake up either from an RTC alarm or an external interrupt pin.

Portenta C33

Selecting a wakeup source

The wakeup source can be one of the deep-sleep enabled wakeup pins, and an RTC Alarm. You can select multiple pins or the RTC alarm to wake up the board. These sources are the same for both Sleep and Standby

Wakeup Pins

This feature can be used when you want to wake up the board from external stimuli, such as sensors or user input. Some sensors have an interrupt pin that you can connect to one of the wakeup pins (eg: most motion sensors), while some output voltage on a pin, (eg: Passive Infrared Sensors or user buttons). To select a wakeup pin just call board.setWakeupPin(<pin_number>, <direction>). The direction can be either RISING if you want to wake up when voltage is applied to a pin, or FALLING if you want to wake when no voltage is applied anymore. Here is a list of the usable interrupts:

Arduino Pin MCU PIN IRQ
A0 P006 IRQ11
A1 P005 IRQ10
A2 P004 IRQ9
A3 P002 IRQ8
A4 P001 IRQ7
A5 P015 IRQ13
D4 P401 IRQ5
D7 P402 IRQ4

Important

Not all IRQs are created equal, the number of the IRQ represents it's priority. (IRQ0 being the highest priority and IRQ15 the lowest). Be careful when selecting your IRQ pin to make sure the board behaves as expected.

RTC Alarm

This feature is particularly useful when you want to set the board to wake up at specific times. You can use this in conjunction with the RTC library. To make your board wake up on an RTC alarm you simply need to call board.setWakeupRTC() and it will enable that functionality. Check out this example for more details about setting up the RTC.

To simplify things, we have added a convenience function in Board called sleepFor. This method takes a number of hours, minutes and seconds as a parameters. For more information, check out the Standby_WakeFromRTC_C33 example.

Send the board to sleep
  • board.sleepUntilwakeupEvent(); - Sends the board into the sleep state, where it consumes about ~6mA without peripherals and ~18mA with peripherals.
  • board.standByUntilWakeupEvent(); - Sends the board into the standby state, where it consumes around ~100uA without peripherals and ~12mA with peripherals.
Toggle peripherals
  • board.turnPeripheralsOff(); - Turn the peripherals on Portenta C33 (ADC, RGB LED, Secure Element, Wifi and Bluetooth) off.
  • board.turnPeripheralsOn(); - Turns them back on.

Low Power Measurements

Here's an overview of the reduction in power usage that you can expect from this library on the Portenta C33. The screenshots below are taken from the nRF Power Profiler application using a Nordic PPK2 while running the blink sketch on the same board.

Without power optimisations

Sleep (ADC, RGB LED, Secure Element, Wifi and Bluetooth off)

Standby (ADC, RGB LED, Secure Element, Wifi and Bluetooth off)

Sleep (ADC, RGB LED, Secure Element, Wifi and Bluetooth on)

Standby (ADC, RGB LED, Secure Element, Wifi and Bluetooth on)

Portenta H7 Low Power

When utilizing Mbed with STM32-based microcontrollers such as the Portenta H7, the approach to managing sleep modes exhibits some unique characteristics. Mbed is designed to transition the board to a sleep-like state—akin to the Sleep Mode found on the Portenta C33—whenever the system is not actively processing tasks. This energy-saving feature can be activated by invoking the board.enableSleepWhenIdle() method within your code.

However, initiating this command doesn't guarantee automatic entry into sleep mode due to the presence of Sleep Locks. These locks act as safeguards, preventing the system from sleeping under certain conditions to ensure ongoing operations remain uninterrupted. Common peripherals, such as the USB Stack, may engage a sleep lock, effectively keeping the board awake even during periods of apparent inactivity. This behavior underscores how the effectiveness of sleep mode is closely linked to the specific operations and configurations defined in your sketch.

For those looking to fine-tune their board's energy efficiency by leveraging automatic sleep functionality, a particularly useful resource is the Sleep Lock Example Sketch. This sketch provides a comprehensive overview of the active sleep locks, offering insights into what may be preventing the board from entering sleep mode and how to address these obstacles.

Send the board to sleep

board.standByUntilWakeupEvent() - Sends the board into the standby state, where it consumes around ~100uA and ~300uA without peripherals.

Waking up from GPIO

Note

There is only one Wake-Up pin on the portenta H7 GPIO0 on the High Density connector. You can access it on the Arduino Portenta Breakout Board.

Waking up from RTC

This feature is particularly useful when you want to set the board to wake up at specific times. To make your board wake up on an RTC alarm you simply need to call board.setWakeupRTC() and it will enable that functionality.

To simplify things, we have added a convenience function in Board called sleepFor. This method takes a number of hours, minutes and seconds as a parameters. For more information, check out the Standby_WakeFromRTC_H7 example.

Board board; 

void setup() {
    board.begin();
    board.enableWakeupFromRTC(0, 0, 1);
    board.setAllPeripheralsPower(false);
    board.standByUntilWakeupEvent();
}

Toggle peripherals

  • board.setAllPeripheralsPower(false); - Turn the peripherals on Portenta C33 (ADC, RGB LED, Secure Element, Wifi and Bluetooth) off.
  • board.setAllPeripheralsPower(true); - Turns them back on. (should be called as close to the beginning of the void setup() method as possible.

Warning

This method toggles power to important system peripherals like the DRAM, Oscilllators, USB and Ethernet PHY chips. Do set this to false unless it's before sending the board to sleep, as it might cause undefined behaviours.