Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions examples/ina219_simpletest.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Sample code and test for adafruit_in219"""
"""Sample code and test for adafruit_ina219"""

import time
import board
Expand All @@ -7,7 +7,7 @@

i2c_bus = board.I2C()

ina219 = INA219(i2c_bus)
ina219 = INA219(i2c_bus=i2c_bus, addr=0x40)

print("ina219 test")

Expand Down