Compare commits
1 commit
remove-bad
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d15cb86621 |
2 changed files with 3 additions and 1 deletions
|
|
@ -6,7 +6,7 @@ Introduction
|
||||||
:alt: Documentation Status
|
:alt: Documentation Status
|
||||||
|
|
||||||
.. image :: https://img.shields.io/discord/327254708534116352.svg
|
.. image :: https://img.shields.io/discord/327254708534116352.svg
|
||||||
:target: https://discord.gg/nBQh6qu
|
:target: https://adafru.it/discord
|
||||||
:alt: Discord
|
:alt: Discord
|
||||||
|
|
||||||
.. image:: https://github.com/adafruit/Adafruit_CircuitPython_AMG88xx/workflows/Build%20CI/badge.svg
|
.. image:: https://github.com/adafruit/Adafruit_CircuitPython_AMG88xx/workflows/Build%20CI/badge.svg
|
||||||
|
|
|
||||||
|
|
@ -52,6 +52,7 @@ from micropython import const
|
||||||
# Registers are defined below in the class. These are possible register values.
|
# Registers are defined below in the class. These are possible register values.
|
||||||
|
|
||||||
# Operating Modes
|
# Operating Modes
|
||||||
|
# pylint: disable=bad-whitespace
|
||||||
_NORMAL_MODE = const(0x00)
|
_NORMAL_MODE = const(0x00)
|
||||||
_SLEEP_MODE = const(0x10)
|
_SLEEP_MODE = const(0x10)
|
||||||
_STAND_BY_60 = const(0x20)
|
_STAND_BY_60 = const(0x20)
|
||||||
|
|
@ -80,6 +81,7 @@ _PIXEL_ARRAY_WIDTH = const(8)
|
||||||
_PIXEL_ARRAY_HEIGHT = const(8)
|
_PIXEL_ARRAY_HEIGHT = const(8)
|
||||||
_PIXEL_TEMP_CONVERSION = 0.25
|
_PIXEL_TEMP_CONVERSION = 0.25
|
||||||
_THERMISTOR_CONVERSION = 0.0625
|
_THERMISTOR_CONVERSION = 0.0625
|
||||||
|
# pylint: enable=bad-whitespace
|
||||||
|
|
||||||
|
|
||||||
def _signed_12bit_to_float(val):
|
def _signed_12bit_to_float(val):
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue