Created
July 18, 2019 22:00
-
-
Save unforgiven512/98870d8d66e704aac4577cae3e528600 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
from machine import Pin, I2C | |
from ina219 import INA219 | |
from logging import INFO | |
SHUNT_OHMS = 0.1 | |
i2c = I2C(-1, Pin(5), Pin(4)) | |
ina = INA219(SHUNT_OHMS, i2c, log_level=INFO) | |
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