Created
July 18, 2019 21:58
-
-
Save unforgiven512/3cbba4192a46557fae600122050c9dd2 to your computer and use it in GitHub Desktop.
INA219 library (example) for MicroPython on ESP8266
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Example script. | |
Edit the I2C interface constant to match the one you have | |
connected the sensor to. | |
""" | |
from ina219 import INA219 | |
from machine import I2C | |
# Edit to match interface the sensor is connect to (1 or 2). | |
I2C_INTERFACE_NO = 2 | |
SHUNT_OHMS = 0.1 | |
ina = INA219(SHUNT_OHMS, I2C(I2C_INTERFACE_NO)) | |
ina.configure() | |
print("Bus Voltage: %.3f V" % ina.voltage()) | |
print("Current: %.3f mA" % ina.current()) | |
print("Power: %.3f mW" % ina.power()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment