nanoFramework.Iot.Device.Ip5306 1.0.288-preview.75

Prefix Reserved
This is a prerelease version of nanoFramework.Iot.Device.Ip5306.
There is a newer version of this package available.
See the version list below for details.
dotnet add package nanoFramework.Iot.Device.Ip5306 --version 1.0.288-preview.75
                    
NuGet\Install-Package nanoFramework.Iot.Device.Ip5306 -Version 1.0.288-preview.75
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="nanoFramework.Iot.Device.Ip5306" Version="1.0.288-preview.75" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="nanoFramework.Iot.Device.Ip5306" Version="1.0.288-preview.75" />
                    
Directory.Packages.props
<PackageReference Include="nanoFramework.Iot.Device.Ip5306" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add nanoFramework.Iot.Device.Ip5306 --version 1.0.288-preview.75
                    
#r "nuget: nanoFramework.Iot.Device.Ip5306, 1.0.288-preview.75"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package nanoFramework.Iot.Device.Ip5306@1.0.288-preview.75
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=nanoFramework.Iot.Device.Ip5306&version=1.0.288-preview.75&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=nanoFramework.Iot.Device.Ip5306&version=1.0.288-preview.75&prerelease
                    
Install as a Cake Tool

IP5306 - Power management

This chip is used mainly in power bank and embedded devices as a power management device. It is connected using I2C and allows to adjust the charging current,voltage, cutoff voltage. It has the capacity to light up 4 leds displaying the charge of the battery. This device is used in the M5Stack.

Documentation

The datasheet in Chinese can be found here.

Usage

As always when using I2C, you need to make sure you're using the right pins. En ESP32, you need the register the pins if not using the default one.

Configuration.SetPinFunction(22, DeviceFunction.I2C1_CLOCK);
Configuration.SetPinFunction(21, DeviceFunction.I2C1_DATA);

I2cDevice i2c = new(new I2cConnectionSettings(1, Ip5306.SecondaryI2cAddress));
Ip5306 power = new(i2c);

Note the default address of the IP5306 is 0xEA, the address used in M5Stack is 0x75 (here setup as SecondaryI2cAddress).

Getting access to the properties

All properties can be adjusted and changed. He is an example how to display all of them:

Debug.WriteLine($"  AutoPowerOnEnabled: {power.AutoPowerOnEnabled}");
Debug.WriteLine($"  BoostOutputEnabled: {power.BoostOutputEnabled}");
Debug.WriteLine($"  BoostWhenVinUnpluggedEnabled: {power.BoostWhenVinUnpluggedEnabled}");
Debug.WriteLine($"  BostEnabled: {power.BoostEnabled}");
Debug.WriteLine($"  ButtonOffEnabled: {power.ButtonOffEnabled}");
Debug.WriteLine($"  ChargerEnabled: {power.ChargerEnabled}");
Debug.WriteLine($"  ChargingBatteryVoltage: {power.ChargingBatteryVoltage}");
Debug.WriteLine($"  ChargingCurrent: {power.ChargingCurrent}");
Debug.WriteLine($"  ChargingCutOffCurrent: {power.ChargingCutOffCurrent}");
Debug.WriteLine($"  ChargingCuttOffVoltage{power.ChargingCuttOffVoltage}");
Debug.WriteLine($"  ChargingLoopSelection: {power.ChargingLoopSelection}");
Debug.WriteLine($"  ChargingUnderVoltage: {power.ChargingUnderVoltage}");
Debug.WriteLine($"  ConstantChargingVoltage: {power.ConstantChargingVoltage}");
Debug.WriteLine($"  FlashLightBehavior {power.FlashLightBehavior}");
Debug.WriteLine($"  IsBatteryFull: {power.IsBatteryFull}");
Debug.WriteLine($"  IsCharging: {power.IsCharging}");
Debug.WriteLine($"  IsOutputLoadHigh: {power.IsOutputLoadHigh}");
Debug.WriteLine($"  LightDutyShutdownTime: {power.LightDutyShutdownTime}");
Debug.WriteLine($"  LowPowerOffEnabled: {power.LowPowerOffEnabled}");
Debug.WriteLine($"  ShortPressToSwitchBosst: {power.ShortPressToSwitchBosst}");
Debug.WriteLine($"  SwitchOffBoostBehavior: {power.SwitchOffBoostBehavior}");
Debug.WriteLine($"  GetButtonStatus: {power.GetButtonStatus()}");

Button status

You can get the button status:

var button = power.GetButtonStatus();
switch (button)
{
    case ButtonPressed.DoubleClicked:
        Debug.WriteLine("double clicked");
        break;
    case ButtonPressed.LongPressed:
        Debug.WriteLine("Long pressed");
        break;
    case ButtonPressed.ShortPressed:
        Debug.WriteLine("Short pressed");
        break;
    case ButtonPressed.NotPressed:
    default:
        break;
}

Important: depending on the behavior you setup for the button, the device may switch off what's connected to it. So be careful on what you setup. Once the I2C connection is broken, you can't adjust the behavior bck.

configuration for M5Stack

The configuration for M5Stack is the following:

// Configuration for M5Stack
power.ButtonOffEnabled = true;
power.BoostOutputEnabled = false;
power.AutoPowerOnEnabled = true;
power.ChargerEnabled = true;
power.BoostEnabled = true;
power.LowPowerOffEnabled = true;
power.FlashLightBehavior = ButtonPress.Doubleclick;
power.SwitchOffBoostBehavior = ButtonPress.LongPress;
power.BoostWhenVinUnpluggedEnabled = true;
power.ChargingUnderVoltage = ChargingUnderVoltage.V4_55;
power.ChargingLoopSelection = ChargingLoopSelection.Vin;
power.ChargingCurrent = ElectricCurrent.FromMilliamperes(2250);
power.ConstantChargingVoltage = ConstantChargingVoltage.Vm28;
power.ChargingCuttOffVoltage = ChargingCutOffVoltage.V4_17;
power.LightDutyShutdownTime = LightDutyShutdownTime.S32;
power.ChargingCutOffCurrent = ChargingCutOffCurrent.C500mA;
power.ChargingCuttOffVoltage = ChargingCutOffVoltage.V4_2;
Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on nanoFramework.Iot.Device.Ip5306:

Package Downloads
nanoFramework.M5Core

This package includes the nanoFramework.M5Core assembly for .NET nanoFramework C# projects.

nanoFramework.Fire

This package includes the nanoFramework.Fire assembly for .NET nanoFramework C# projects.

nanoFramework.M5Stack

This package includes the nanoFramework.M5Stack assembly for .NET nanoFramework C# projects.

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on nanoFramework.Iot.Device.Ip5306:

Repository Stars
nanoframework/nanoFramework.M5Stack
:package: Board support package for M5Stack, M5StickC and M5StickCPlus for .NET nanoFramework
Version Downloads Last Updated
1.2.889 135 7/28/2025
1.2.869 365 4/2/2025
1.2.864 265 4/2/2025
1.2.852 343 3/11/2025
1.2.846 294 3/10/2025
1.2.822 533 2/26/2025
1.2.775 606 2/4/2025
1.2.772 169 2/4/2025
1.2.755 358 1/31/2025
1.2.743 245 1/20/2025
1.2.737 155 1/13/2025
1.2.718 239 12/30/2024
1.2.696 302 12/16/2024
1.2.673 430 10/23/2024
1.2.656 449 10/3/2024
1.2.639 395 9/6/2024
1.2.631 263 8/28/2024
1.2.613 367 8/9/2024
1.2.601 242 7/26/2024
1.2.590 334 7/17/2024
1.2.573 427 6/19/2024
1.2.570 178 6/14/2024
1.2.536 558 4/15/2024
1.2.514 456 3/22/2024
1.2.494 293 2/28/2024
1.2.474 421 1/24/2024
1.2.462 247 1/5/2024
1.2.458 222 12/20/2023
1.2.436 410 11/10/2023
1.2.403 455 10/6/2023
1.2.396 299 9/27/2023
1.2.384 295 9/6/2023
1.2.378 380 8/16/2023
1.2.369 343 8/2/2023
1.2.363 312 7/28/2023
1.2.357 341 7/19/2023
1.2.354 317 7/14/2023
1.2.345 319 6/21/2023
1.2.341 290 6/14/2023
1.2.337 347 6/7/2023
1.2.335 212 6/2/2023
1.2.329 315 5/26/2023
1.2.313 431 5/12/2023
1.2.302 385 5/10/2023
1.2.297 402 5/3/2023
1.2.273 1,131 3/17/2023
1.2.267 733 3/10/2023
1.2.263 587 3/8/2023
1.2.259 587 2/27/2023
1.2.256 608 2/24/2023
1.2.253 592 2/22/2023
1.2.222 1,216 1/9/2023
1.2.208 1,604 1/3/2023
1.2.203 740 12/28/2022
1.2.153 2,127 11/5/2022
1.2.141 2,297 10/25/2022
1.2.63 7,234 9/3/2022
1.2.47 1,145 8/15/2022
1.2.40 1,098 8/6/2022
1.2.38 1,059 8/5/2022
1.2.28 2,607 8/1/2022
1.2.13 2,102 7/24/2022
1.2.10 1,075 7/23/2022
1.1.142.3202 1,974 7/7/2022
1.1.133.52556 2,848 6/30/2022
1.1.121.35854 2,505 6/26/2022
1.1.102.51394 2,541 6/15/2022
1.1.99.36719 1,078 6/14/2022
1.1.72.29765 4,992 5/31/2022
1.1.64.21380 2,470 5/26/2022
1.1.54.28879 1,915 5/23/2022
1.1.40 2,714 5/5/2022
1.1.1 8,469 4/14/2022
1.0.302 3,658 3/31/2022
1.0.300 530 3/31/2022
1.0.288-preview.113 239 3/25/2022
1.0.288-preview.103 247 3/21/2022
1.0.288-preview.98 223 3/18/2022
1.0.288-preview.93 244 3/15/2022
1.0.288-preview.86 273 3/8/2022
1.0.288-preview.77 252 2/27/2022
1.0.288-preview.75 215 2/26/2022
1.0.288-preview.65 237 2/18/2022
1.0.288-preview.63 225 2/16/2022
1.0.288-preview.61 246 2/12/2022
1.0.288-preview.58 213 2/10/2022
1.0.288-preview.53 215 2/9/2022
1.0.288-preview.41 274 1/31/2022
1.0.288-preview.29 249 1/28/2022
1.0.288-preview.20 264 1/27/2022
1.0.288-preview.18 234 1/27/2022
1.0.288-preview.5 247 1/24/2022
1.0.288-preview.1 238 1/21/2022
1.0.267 448 1/4/2022
1.0.259 667 12/9/2021
1.0.258 377 12/7/2021
1.0.218 590 10/18/2021
1.0.203 433 10/11/2021
1.0.191 424 9/29/2021
1.0.177 441 9/22/2021