From a497a633e35719c1da182346ce11697a689c432d Mon Sep 17 00:00:00 2001 From: Colin Grant Date: Fri, 8 May 2020 19:40:39 -0700 Subject: [PATCH] Add back the last character in constant POWERDOWN. It looks like POWERDOWN lost it's 'N' back in c024b6a, this change just puts it back. --- adafruit_ina219.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adafruit_ina219.py b/adafruit_ina219.py index 37a7eb7..2c1ba4e 100644 --- a/adafruit_ina219.py +++ b/adafruit_ina219.py @@ -96,7 +96,7 @@ class ADCResolution: class Mode: """Constants for ``mode``""" - POWERDOW = 0x00 # power down + POWERDOWN = 0x00 # power down SVOLT_TRIGGERED = 0x01 # shunt voltage triggered BVOLT_TRIGGERED = 0x02 # bus voltage triggered SANDBVOLT_TRIGGERED = 0x03 # shunt and bus voltage triggered