The INA236 device is a 16-bit digital current monitor with an I2C/SMBus-compatible interface that is compliant with a wide range of digital bus voltages such as 1.2 V, 1.8 V, 3.3 V, and 5.0 V. The device monitors the voltage across an external sense resistor and reports values for current, bus voltage, and power. (Click for more info)
This library is a software library that works with the INA236 current, voltage, and power monitor chip. This library provides a convenient and efficient way to access the I2C interfaces of the chip, allowing developers to easily integrate this power meter into their systems.
The library is designed to be easy to use and provides a simple, intuitive API for accessing the I2C interfaces of the INA236. It includes a range of functions for performing common I2C operations, such as sending and receiving data, querying the status of the chip, reading the measured parameters, and configuring the INA236 settings.
With this library, developers can quickly and easily integrate the INA236 into their systems, enabling them to take full advantage of the chip's capabilities.
- Easy-to-use API for accessing the I2C interfaces of the INA236
- Support for common I2C operations, such as sending and receiving data, querying the status of the chip, reading the measured parameters, and configuring the INA236 settings
- Full feature library
The full documents are available here
Footprint and schematic symbols are available in my Altium library.
Is it helpfull?
-
Download the library source from the latest release
-
Copy
ina236.candina236.hfile to your project directory and add them to your IDE if necessary. -
Inclued the library into your project:
#include "ina236.h"
-
Create an object (instanse) from INA236 struct with desired name:
INA236 ina236;
-
Initialize the chip:
INA236_init(&ina236, 0x48, &hi2c1, 1, RANGE_20_48mV, NADC_16, CTIME_1100us, CTIME_140us, MODE_CONTINUOUS_BOTH_SHUNT_BUS);
Each argument is described on the doc page.
-
Now you can call
INA236_readAllfunction to read the meassured data:INA236_readAll(&ina236); shunt_voltage = ina236.ShuntVoltage; bus_voltage = ina236.BusVoltage; current = ina236.Current; power = ina236.Power;
Here is the whole code:
#include "ina236.h"
INA236 ina236;
float shunt_voltage, bus_voltage, current, power;
if(STATUS_OK == INA236_init(&ina236, 0x48, &hi2c1, 1, RANGE_20_48mV, NADC_16, CTIME_1100us, CTIME_140us, MODE_CONTINUOUS_BOTH_SHUNT_BUS)){
INA236_readAll(&ina236);
shunt_voltage = ina236.ShuntVoltage;
bus_voltage = ina236.BusVoltage;
current = ina236.Current;
power = ina236.Power;
}If you want to use UART or virtual USB COM port on youe microcontroller, it is recommended to use this print function:
// Print setting -------------------
#define DEBUG_ENABLE 1
#define USB_DEBUG 0
#define DEBUG_UART (&huart1)
// ---------------------------------
#if DEBUG_ENABLE
#include "stdarg.h"
#include "string.h"
#include "stdlib.h"
#if USB_DEBUG
#include "usbd_cdc_if.h"
#endif
#endif
void DEBUG(const char* _str, ...){
#if DEBUG_ENABLE
va_list args;
va_start(args, _str);
char buffer[150];
memset(buffer, 0, 150);
int buffer_size = vsprintf(buffer, _str, args);
#if USB_DEBUG
CDC_Transmit_FS((uint8_t*) buffer, buffer_size);
#else
HAL_UART_Transmit(DEBUG_UART, (uint8_t*)buffer, buffer_size, 5000);
#endif
#endif
}By applying the above trick, you can simply use this one to see the variables on the serial terminal:
#include "ina236.h"
INA236 ina236;
if(STATUS_OK == INA236_init(&ina236, 0x48, &hi2c1, 1, RANGE_20_48mV, NADC_16, CTIME_1100us, CTIME_140us, MODE_CONTINUOUS_BOTH_SHUNT_BUS)){
INA236_readAll(&ina236);
DEBUG("Shunt Voltage: %.3fmV \t Bus Voltage: %.2fV \t Current: %.2fA \t Power: %.2fW\r\n", ina236.ShuntVoltage, ina236.BusVoltage, ina236.Current, ina236.Power);
}
else{
DEBUG("----- INA236 init failed -----\r\n");
}INA236 can assert an alert on several situations like convertion ready, over power, over current, bus over voltage, bus under voltage, etc. To initialize alert functionality, use INA236_alert_init function:
INA236_alert_init(&ina236, ALERT_SHUNT_OVER_LIMIT, ALERT_ACTIVE_LOW, ALERT_TRANSPARENT, ALERT_CONV_DISABLE, 2.5)Each argument is described on the doc page.
** NOTE1 ** If you choose ALERT_LATCHED for alert latch mode, you have to reset the alert pin by calling INA236_resetAlert function after each alert assertion. (see more)
** NOTE2 ** If you enabled convertion ready alert as well as limit reach functions (like shunt over voltage etc), you have to distinguish the alert source bt calling INA236_getAlertSource function. (see more)
** NOTE3 ** The alert pin is open-drain. So don not forget to add a pull-up resistor on this pin.
You can read each parameter individually instead of INA236_readAll by calling each of these functions:
INA236_getShuntVoltage(&ina236);to read shunt voltage (in mV)INA236_getBusVoltage(&ina236);to read bus voltage (in V)INA236_getPower(&ina236);to read power (in W)INA236_getCurrent(&ina236);to read current (in A)
Example:
#include "ina236.h"
INA236 ina236;
float shunt_voltage, bus_voltage, current, power;
if(STATUS_OK == INA236_init(&ina236, 0x48, &hi2c1, 1, RANGE_20_48mV, NADC_16, CTIME_1100us, CTIME_140us, MODE_CONTINUOUS_BOTH_SHUNT_BUS)){
shunt_voltage = INA236_getShuntVoltage(&ina236);
bus_voltage = INA236_getBusVoltage(&ina236);
current = INA236_getCurrent(&ina236);;
power = INA236_getPower(&ina236);;
}You can send a reset command to all of the INA236 chips on the same bus by calling INA236_SoftResetAll function. (see more)
You can change each of the configurations on the fly using these functions:
INA236_setADCRangeto change the ADC full scale range (see more)INA236_setNumberOfADCSamplesto change the number of averaging ADC samples (see more)INA236_setVBusConversionTimeto change the conversion period of VBus (see more)INA236_setVShuntConversionTimeto change the conversion period of VBus (see more)INA236_setModeto change the operating mode (see more)
If you want to get the manufacturer or device ID, you can use these functions:
For example:
printf("Manufacturer ID is 0x%4X \r\n", INA236_getManID(&ina236));
printf(" Device ID is 0x%3X \r\n", INA236_getDevID(&ina236));INA236 can also give the state of internal modules like CPU and memory. By calling INA236_getErrors function you can see if there is any error or not. (see more)

