File tree Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,6 @@ class is inherited by the chip-specific subclasses.
39
39
* Adafruit's Register library: https://github.com/adafruit/Adafruit_CircuitPython_Register
40
40
* Adafruit's Bus Device library: https://github.com/adafruit/Adafruit_CircuitPython_BusDevice
41
41
**Notes:**
42
- #. Datasheet:
43
42
"""
44
43
45
44
from adafruit_bus_device .i2c_device import I2CDevice
@@ -100,10 +99,6 @@ class is inherited by the chip-specific subclasses.
100
99
AMG88xx_THERMISTOR_CONVERSION = .0625
101
100
102
101
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."""
107
102
108
103
#set up the registers
109
104
_pctl = i2c_bits .RWBits (8 , 0x00 , 0 )
@@ -182,4 +177,4 @@ def signedMag12ToFloat(self, val):
182
177
if val & 0x8000 :
183
178
return 0 - float (absVal )
184
179
else :
185
- return float (absVal )
180
+ return float (absVal )
You can’t perform that action at this time.
0 commit comments