TI_INA226_micropython
TI_INA226_micropython copied to clipboard
Micropython driver for Texas Instruments INA226 power measuring IC
Results
2
TI_INA226_micropython issues
Sort by
recently updated
recently updated
newest added
Using a 0,1 Ohm shunt resistor and with the same parameters of the excelent example here at GitHub, I found that couldn´t measure more than 800 mA, aprox, although the...
I discovered a bug in the library: ```py @property def shunt_voltage(self): """The shunt voltage (between V+ and V-) in Volts (so +-.327V)""" # no, +-80mV! value = _to_signed(self._read_register(_REG_SHUNTVOLTAGE)) # The...