from machine import Pin from max6675 import MAX6675 from time import sleep #therm = MAX6675(cs=Pin(15), sck=Pin(2), so=Pin(4)) therm = MAX6675(Pin(15), Pin(2), Pin(4)) while True: print(therm.read()) sleep(1)