INA260

July 2, 2026 · View on GitHub

Arduino CI Arduino-lint JSON check GitHub issues

License: MIT GitHub release PlatformIO Registry

INA260

Arduino library for the INA260 power sensor.

Description

Experimental

Arduino library for the INA260 power sensor.
This library is based upon the INA226 library however the INA260 is slightly simpler.

Not all functionality is tested / investigated.

Read datasheet for details.

==> USE WITH CARE

The INA260 is a voltage, current and power measurement device. A few important maxima, see datasheet, chapter 6.

descriptionmaxunitnotes
bus voltage36VoltSee 8.3.2
shunt voltage30mVolt
current15Ampere

The INA260 shunt can withstand currents higher than 15 Amps for a certain amount of time. (See datasheet 8.3.2, figure 22 for details)

Indicative table

Ampsseconds
1000.2
800.4
600.8
551.0
502.0
405.0

Feedback as always, is welcome.

Special characters

  • Ω == Ohm = ALT-234 (Windows)
  • µ == micro = ALT-0181 (Windows)

Specifications

INAxxx libraries

Other

I2C

Address

The sensor can have 16 different I2C addresses, which depends on how the A0 and A1 address lines are connected to the SCL, SDA, GND and VCC pins.

See table - from datasheet table 2, page 18.

A1A0AddrHEX
GNDGND640x40
GNDVS650x41
GNDSDA660x42
GNDSCL670x43
VSGND680x44
VSVS690x45
VSSDA700x46
VSSCL710x47
SDAGND720x48
SDAVS730x49
SDASDA740x4A
SDASCL750x4B
SCLGND760x4C
SCLVS770x4D
SCLSDA780x4E
SCLSCL790x4F

Performance

To be elaborated, example sketch available.

(From Datasheet)
The INA260 supports the transmission protocol for fast mode (1 kHz to 400 kHz) and high-speed mode (1 kHz to 2.94 MHz). All data bytes are transmitted most significant byte first.

I2C multiplexing

Sometimes you need to control more devices than possible with the default address range the device provides. This is possible with an I2C multiplexer e.g. TCA9548 which creates up to eight channels (think of it as I2C subnets) which can use the complete address range of the device.

Drawback of using a multiplexer is that it takes more administration in your code e.g. which device is on which channel. This will slow down the access, which must be taken into account when deciding which devices are on which channel. Also note that switching between channels will slow down other devices too if they are behind the multiplexer.

About Measurements

The INA260 has a build in shunt of 2 mOhm and has a default maxCurrent of 15 Amperes. It cannot be reconfigured.

Some initial tests with other devices (INA226) shows that the readings do not 100% add up. I expect this is caused by fluctuations in my power supply used and more important that the ADC is multiplexed so there is time between the bus voltage measurement and the shunt voltage measurement. If the current has changed a bit these values are not necessary in line.

Interface

#include "INA260.h"

Constructor

  • INA260(const uint8_t address, TwoWire *wire = Wire) Constructor to set the address and optional Wire interface.
  • bool begin() initializes the class. returns true if the INA260 address is on the I2C bus. Note: one needs to set Wire.begin() before calling begin().
  • bool isConnected() returns true if the INA260 address is on the I2C bus.
  • uint8_t getAddress() returns the address set in the constructor.

Core Functions

Note the power and the current are not meaningful without calibrating the sensor. Also the value is not meaningful if there is no shunt connected.

  • float getShuntVoltage() idem, in volts.
  • float getBusVoltage() idem. in volts. Max 36 Volt.
  • float getCurrent() is the current through the shunt in Ampere.
  • float getPower() is the current x BusVoltage in Watt.
  • bool isConversionReady() returns true if conversion ready flag is set.
  • bool waitConversionReady(uint32_t timeout = INA260_MAX_WAIT_MS) active waiting for ready flag. Polling for max timeout time, default 600 milliseconds, for wake up time.

The library has helper functions to convert above output to a more appropriate scale of units.

Helper functions for the milli scale.

  • float getBusVoltage_mV() idem, in milliVolts.
  • float getShuntVoltage_mV() idem, in milliVolts.
  • float getCurrent_mA() idem, in milliAmpere.
  • float getPower_mW() idem, in milliWatt.

Helper functions for the micro scale.

  • float getBusVoltage_uV() idem, in microVolts.
  • float getShuntVoltage_uV() idem, in microVolts.
  • float getCurrent_uA() idem, in microAmpere.
  • float getPower_uW() idem, in microWatt.

Configuration

Note: The internal conversions runs in the background in the device. If a conversion is finished the measured value is stored in the appropriate register. The last obtained values can always be read from the registers, so they will not block. Result can be that you get the very same value if no new data is available yet. This is especially true if you increase the number of samples. (See also discussion in INA219 issue #11).

Using more samples reduces the noise level, but one will miss the faster changes in voltage or current. Depending on your project needs you can choose one over the other.

As a rule of thumb one could take the time between two I2C reads of a register as an upper limit. This would result in a fresh measurement every time one reads the register. NB it is always possible to average readings fetched from the device in your own code.

  • bool reset() software power on reset. This implies calibration with setMaxCurrentShunt() needs to be redone. Returns true upon success.
  • bool setAverage(uint8_t avg = INA260_1_SAMPLE) see table below. (0 = default ==> 1 read), returns false if parameter > 7.
  • uint8_t getAverage() returns the value set. See table below. Note this is not the count of samples.
  • bool setBusVoltageConversionTime(uint8_t bvct = INA260_1100_us) see table below. (4 = default ==> 1.1 ms), returns false if parameter > 7.
  • uint8_t getBusVoltageConversionTime() return the value set. Note the value returned is not a unit of time.
  • bool setShuntCurrentConversionTime(uint8_t scct = INA260_1100_us) see table below. (4 = default ==> 1.1 ms), returns false if parameter > 7.
  • uint8_t getShuntCurrentConversionTime() return the value set. Note the value returned is not a unit of time.
enum descriptionvalue# samplesnotes
INA260_1_SAMPLE01default
INA260_4_SAMPLES14
INA260_16_SAMPLES216
INA260_64_SAMPLES364
INA260_128_SAMPLES4128
INA260_256_SAMPLES5256
INA260_512_SAMPLES6512
INA260_1024_SAMPLES71024
enum descriptionBVCT SVCTtimenotes
INA260_140_us0140 us
INA260_204_us1204 us
INA260_332_us2332 us
INA260_588_us3588 us
INA260_1100_us41.1 msdefault
INA260_2100_us52.1 ms
INA260_4200_us64.2 ms
INA260_8300_us78.3 ms

Note: times are typical, check datasheet for operational range. (max is ~10% higher)

Note: total conversion time can take up to 1024 * 8.3 ms ~ 10 seconds.

Calibration

See datasheet.

The INA260 has a build in shunt of 2 mOhm and has a default maxCurrent of 15 Amperes. It cannot be reconfigured.

  • float getCurrentLSB() returns the LSB in Ampere == precision of the calibration.
  • float getCurrentLSB_mA() returns the LSB in milliAmpere.
  • float getCurrentLSB_uA() returns the LSB in microAmpere.
  • float getShunt() returns the value set for the shunt in ohm.
  • float getMaxCurrent() returns the value for the maxCurrent which can be corrected.

To print these values in scientific notation use https://github.com/RobTillaart/printHelpers

Operating mode

See datasheet, partially tested.

Mode = 4 is not used, is also a shutdown() unknown if there is a difference with mode == 0.

  • bool setMode(uint8_t mode = 7) mode = 0..7. The value 7 == ShuntBusContinuous mode.
  • uint8_t getMode() returns the mode (0..7).

Descriptive mode functions (convenience wrappers).

  • bool shutDown() mode 0 - not tested yet
  • bool setModeShuntTrigger() mode 1 - not tested yet - how to trigger to be investigated
  • bool setModeBusTrigger() mode 2 - not tested yet
  • bool setModeShuntBusTrigger() mode 3 - not tested yet
  • bool setModeShuntContinuous() mode 5
  • bool setModeBusContinuous() mode 6
  • bool setModeShuntBusContinuous() mode 7 - default.

Alert functions

See datasheet, not tested yet.

  • bool setAlertRegister(uint16_t mask) by setting the mask one of five types of over- or underflow can be detected. Another feature that can be set is the conversion ready flag. Returns true if write to register is successful.
  • uint16_t getAlertRegister() returns the mask set by setAlertRegister().
  • bool setAlertLatchEnable(bool latch = false) idem. Returns true if write to register is successful.
  • bool getAlertLatchEnable() return current status.
  • bool setAlertPolarity(bool inverted = false) idem. Returns true if write to register is successful.
  • bool getAlertPolarity() return current status.
description alert registermaskshort
INA260_SHUNT_OVER_VOLTAGE0x8000SOL
INA260_SHUNT_UNDER_VOLTAGE0x4000SUL
INA260_BUS_OVER_VOLTAGE0x2000BOL
INA260_BUS_UNDER_VOLTAGE0x1000BUL
INA260_POWER_OVER_LIMIT0x0800POL
INA260_CONVERSION_READY0x0400CNVR
description alert flagsmaskshort
INA260_ALERT_FUNCTION_FLAG0x0010AFF
INA260_CONVERSION_READY_FLAG0x0008CVRF
INA260_MATH_OVERFLOW_FLAG0x0004OVF
description alert configurationmaskshort
INA260_ALERT_POLARITY_FLAG0x0002APOL
INA260_ALERT_LATCH_ENABLE_FLAG0x0001LEN

The ALERT pin changes when alert is reached. Falling or rising depends on polarity set.

Deprecated

uint16_t getAlertFlag() returns the mask set by setAlertRegister(). Deprecated, is replaced by getAlertRegister().

Alert Limits

See datasheet, not tested yet.

  • bool setAlertLimit(uint16_t limit) sets the limit that belongs to the chosen Alert Flag. Returns true if write to register successful.
  • uint16_t getAlertLimit() returns the limit set by setAlertLimit().

The alert line falls when alert is reached.

Meta information

  • uint16_t getManufacturerID() should return 0x5449
  • uint16_t getDieID() should return 0x2270

Debugging

  • uint16_t getRegister(uint8_t reg) fetch registers directly, for debugging only.

Error Handling

  • int getLastError() returns last (I2C) error.

Future

Must

  • update documentation.
  • keep in sync with INA226 where possible.
  • test with hardware
  • See INA226 lib.

Should

Could

Won't

Support

If you appreciate my libraries, you can support the development and maintenance. Improve the quality of the libraries by providing issues and Pull Requests, or donate through PayPal or GitHub sponsors.

Thank you,