Compare commits

..

1 commit

Author SHA1 Message Date
dherrada
d15cb86621 Fixed discord invite link 2020-07-08 16:49:04 -04:00
2 changed files with 3 additions and 1 deletions

View file

@ -6,7 +6,7 @@ Introduction
:alt: Documentation Status
.. image :: https://img.shields.io/discord/327254708534116352.svg
:target: https://discord.gg/nBQh6qu
:target: https://adafru.it/discord
:alt: Discord
.. image:: https://github.com/adafruit/Adafruit_CircuitPython_AMG88xx/workflows/Build%20CI/badge.svg

View file

@ -52,6 +52,7 @@ from micropython import const
# Registers are defined below in the class. These are possible register values.
# Operating Modes
# pylint: disable=bad-whitespace
_NORMAL_MODE = const(0x00)
_SLEEP_MODE = const(0x10)
_STAND_BY_60 = const(0x20)
@ -80,6 +81,7 @@ _PIXEL_ARRAY_WIDTH = const(8)
_PIXEL_ARRAY_HEIGHT = const(8)
_PIXEL_TEMP_CONVERSION = 0.25
_THERMISTOR_CONVERSION = 0.0625
# pylint: enable=bad-whitespace
def _signed_12bit_to_float(val):