21 lines
528 B
Python
21 lines
528 B
Python
# SPDX-FileCopyrightText: 2017 John Edgar Park for Adafruit Industries
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
# Circuit Playground Temperature
|
|
# Reads the on-board temperature sensor and prints the value
|
|
|
|
import time
|
|
|
|
import adafruit_thermistor
|
|
import board
|
|
|
|
thermistor = adafruit_thermistor.Thermistor(
|
|
board.TEMPERATURE, 10000, 10000, 25, 3950)
|
|
|
|
while True:
|
|
temp_c = thermistor.temperature
|
|
temp_f = thermistor.temperature * 9 / 5 + 32
|
|
print("Temperature is: %f C and %f F" % (temp_c, temp_f))
|
|
|
|
time.sleep(0.25)
|