Core
6 November 2025 07:01
1
This is a placeholder topic for “Adafruit INA260 High or Low Side Voltage, Current, Power Sensor” comments.
This breakout board may well be the last current sensing solution you every need to buy. Not only can it do the work of two multimeters, but it can do it with amazing…
Read more
Will this work with Pico and Micropython?
1 Like
Jane
7 November 2025 01:49
3
Hi there, Mark,
Absolutely it will.
I’m uncertain whether the INA260 library is included natively on MicroPython, but either way, please find the Github Repository for the library:
Contribute to MilkCerealBowl/MicroPython-INA260 development by creating an account on GitHub.
It looks very simple to use:
from ina260 import INA260
from machine import I2C
ina260 = INA260(I2C())
print("Current:", ina260.current)
print("Voltage:", ina260.voltage)
print("Power:", ina260.power)
1 Like