adafruit_tmp007
¶
CircuitPython driver for the TMP007 contactless IR thermometer
- Author(s): Jerry Needell
Implementation Notes¶
Hardware:
Software and Dependencies:
- Adafruit CircuitPython firmware for the supported boards: https://github.com/adafruit/circuitpython/releases
- Adafruit’s Bus Device library: https://github.com/adafruit/Adafruit_CircuitPython_BusDevice
-
class
adafruit_tmp007.
TMP007
(i2c, address=64, samplerate=2048)¶ Class to represent an Adafruit TMP007 non-contact temperature measurement board.
-
die_temperature
¶ Read sensor die temperature and return its value in degrees celsius.
-
raw_sensor_temperature
¶ Read raw die temperature from TMP007 sensor. Meant to be used in the calculation of temperature values.
-
raw_voltage
¶ Read raw voltage from TMP007 sensor. Meant to be used in the calculation of temperature values.
-
read_register
(register)¶ Read sensor Register.
-
sleep
()¶ Put TMP007 into low power sleep mode. No measurement data will be updated while in sleep mode.
-
temperature
¶ Read object temperature from TMP007 sensor.
-
wake
()¶ Wake up TMP007 from low power sleep mode.
-