Skip to content

Commit 9de2bba

Browse files
authored
Update Adafruit_AMG88xx.py
1 parent 38da8b8 commit 9de2bba

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

Adafruit_AMG88xx.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ class is inherited by the chip-specific subclasses.
3939
* Adafruit's Register library: https://github.com/adafruit/Adafruit_CircuitPython_Register
4040
* Adafruit's Bus Device library: https://github.com/adafruit/Adafruit_CircuitPython_BusDevice
4141
**Notes:**
42-
#. Datasheet:
4342
"""
4443

4544
from adafruit_bus_device.i2c_device import I2CDevice
@@ -100,10 +99,6 @@ class is inherited by the chip-specific subclasses.
10099
AMG88xx_THERMISTOR_CONVERSION = .0625
101100

102101
class Adafruit_AMG88xx:
103-
"""Interface to the PCF8523 RTC."""
104-
105-
#lost_power = i2c_bit.RWBit(0x03, 7)
106-
"""True if the device has lost power since the time was set."""
107102

108103
#set up the registers
109104
_pctl = i2c_bits.RWBits(8, 0x00, 0)
@@ -182,4 +177,4 @@ def signedMag12ToFloat(self, val):
182177
if val & 0x8000:
183178
return 0 - float(absVal)
184179
else:
185-
return float(absVal)
180+
return float(absVal)

0 commit comments

Comments
 (0)