Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 282 Bytes

README.md

File metadata and controls

15 lines (11 loc) · 282 Bytes

TMP1075

A Python driver for the TI TMP1075 temperature sensor

Currently only supports querying of the temperature.

Usage

from TMP1075 import TMP1075

tmp = TMP1075()
print(tmp.get_temperature())
# or
print(tmp.temperature)