PackagesSubmitAbout

micropython-tmp1075

A MicroPython driver for the TI TMP1075 temperature sensor

Device Connection

Install
mpremote mip install github:mattytrentini/micropython-tmp1075
OTA Install
import mip; mip.install("github:mattytrentini/micropython-tmp1075")
Author

mattytrentini

Submitted by
oliverr
License

MIT

Source
Github
mim Status
Valid

micropython-tmp1075

A MicroPython driver for the TI TMP1075 temperature sensor↗ (opens in a new tab)

Currently only supports querying of the temperature.

Usage

    i2c = I2C(sda=Pin(33), scl=Pin(32), freq=133000)
    tmp1075 = Tmp1075(i2c)
    tmp1075.get_temperature()

Unit tests

Expects the MicroPython unittest↗ (opens in a new tab) module to be installed.

    import unittest
    unittest.main('test_tmp1075')

© 2026 Corella Creations | All rights reserved | Privacy Policy