A repository for MicroPython code that communicates with and relays information from the Texas Instruments TMP117/119 temperature sensor.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
671 B

2 months ago
1 month ago
  1. # Code for TMP117 + Pico W Temperature Measurement System
  2. This code is indended to run on a Pico W running Micropython.
  3. ## To run on a Pico W:
  4. - Download this repository and copy these files onto the Micropython filesystem via USB (this can be accomplished using Thonny, the VSCode extension "MicroPico" etc).
  5. - Write a "global_config.json" file (see the example for a template), which defines various settings, I2C buses, and connected sensors.
  6. - Once the microcontroller is reset, the main.py file will execute and the code will run.
  7. To work on this code, you will need a Micropython editor. I recommend VSCode + MicroPico extension written by paulober (GitHub).