本站改版新增arduino频道

Micropython
Arduino

micropython esp32c3 温度传感器DS18B20


温度传感器DS18B20

#引用相关模块
from machine import Pin,SoftI2C,Timer
import onewire,ds18x20,time

#初始化DS18B20
ow= onewire.OneWire(Pin(5)) #使能单总线
ds = ds18x20.DS18X20(ow)    #传感器是DS18B20
rom = ds.scan()         #扫描单总线上的传感器地址,支持多个传感器同时连接

def temp_get(tim):
    ds.convert_temp()
    temp = ds.read_temp(rom[0]) #温度显示,rom[0]为第1个DS18B20

    #数据显示
    print('MicroPython')
    print('Temp test:')
    print(str('%.2f'%temp)+' C') #显示temp,保留2位小数


#开启定时器
tim = Timer(0)
tim.init(period=1000, mode=Timer.PERIODIC,callback=temp_get) #周期为1000ms



推荐分享
图文皆来源于网络,内容仅做公益性分享,版权归原作者所有,如有侵权请告知删除!
 

Copyright © 2014 ESP56.com All Rights Reserved
晋ICP备14006235号-22 晋公网安备14108102001165号

执行时间: 0.0095109939575195 seconds