A MicroPython driver for the TI TMP1075 temperature sensor
Currently only supports querying of the temperature.
i2c = I2C(sda=Pin(33), scl=Pin(32), freq=133000)
tmp1075 = Tmp1075(i2c)
tmp1075.get_temperature()
Expects the MicroPython unittest module to be installed.
import unittest
unittest.main('test_tmp1075')