DS18B20数字温度传感器

from microbit import *
import ds18b20

ds18b20.init(pin1)

while True:
    print(ds18b20.read())
    sleep(300)

针对DS18B20数字温度传感器: