查看温度传感器 - DS18B20的源代码
←
温度传感器 - DS18B20
跳转至:
导航
、
搜索
因为以下原因,你没有权限编辑本页:
你刚才请求的操作只对属于该用户组的用户开放:
用户
您可以查看并复制此页面的源代码:
[[Image:LM35模块.jpg|400px|thumb|LM35模块]] === 产品简介 === <br> 温度传感器 - DS18B20模块是基于DS18B20数字温度传感器设计的模块,可用来对环境温度进行检测;DS18B20数字温度传感器是美国 DALLAS 公司生产的一总线数字温度传感器。 其测温范围-55℃~+125℃,固有测温分辨率 0.5℃,支持多点组网功能,多个DS18B20可以并联在唯一的三线上,实现多点测温,测量结果以 9~12位数字量方式串行传送。 === 规格参数 === <br> *供电电压:DC3.3~5V *精度:±0.5℃ *测量温度范围:-55℃ ~ 125℃ *安装孔径:3MM *模块尺寸:28*21*9.4MM (长*宽*高) *孔间距:15MM *模块重量:2.2g === 引脚说明 === <br> *1. G -- Gnd(地) *2. V -- Vcc(电源+5V) *3. S -- Sign(信号) === 应用示例 === <br> :'''电路连接示意图''' <br> ::'''DS18B20模块'''的 G、V、S分别连接 '''Arduino UNO'''的GND、VCC(+5V)、D2引脚。 <!--[[Image: LED模块.jpg|400px|center|LED模块接线图]]--> :'''示例代码''' <pre> /**************************************** * DS18B20 Temperature measurement * serial print the Temperature of DS18B20 * http://www.yfrobot.com *****************************************/ #include <OneWire.h> #include <DallasTemperature.h> #define ONE_WIRE_BUS 2 // define the DS18B20 data port connection arduino D2 IO OneWire oneWire(ONE_WIRE_BUS); // Initialization single bus device DallasTemperature sensors(&oneWire); void setup(void) { Serial.begin(9600); // Set the baud rate Serial.println("Dallas Temperature IC Control Library Demo"); sensors.begin(); } void loop(void) { Serial.print("Requesting temperatures..."); sensors.requestTemperatures(); // Send commands to take temperature Serial.println("DONE"); Serial.print("Temperature for the device 1 (index 0) is: "); Serial.println(sensors.getTempCByIndex(0)); } </pre> 库文件DallasTemperature: [http://wiki.yfrobot.com/DS18B20/lib/DallasTemperature.zip DallasTemperature] [https://eyun.baidu.com/s/3bBWOEE 备用地址] 库文件OneWire:[http://file.yfrobot.com/wiki/DS18B20/lib/OneWire.zip OneWire] [https://eyun.baidu.com/s/3cNcrPc 备用地址] 程序下载地址:[http://file.yfrobot.com/wiki/DS18B20/DS18B20.ino DS18B20.ino] [https://eyun.baidu.com/s/3mhQ5zKW 备用地址] ===参考资料=== <br> * [http://file.yfrobot.com/datasheet/DS18B20%20datasheet.pdf datasheet] [https://eyun.baidu.com/s/3skJ9HN3 备用地址] * [http://file.yfrobot.com/datasheet/DS18B20%E4%B8%AD%E6%96%87%E6%89%8B%E5%86%8C.pdf DS18B20中文手册] [https://eyun.baidu.com/s/3o8FSugi 备用地址] * [http://file.yfrobot.com/wiki/DS18B20/%E5%8D%95%E6%80%BB%E7%BA%BF%E7%AE%80%E4%BB%8B.pdf 单总线简介] [https://eyun.baidu.com/s/3jI5RaMq 备用地址] <br> ---- [[首页 | 返回首页]] 更多建议和问题欢迎反馈至 [http://www.yfrobot.com YFRobot论坛] 购买方式:[http://yfrobot.taobao.com/ YFRobot 电子工作室]
返回
温度传感器 - DS18B20
。
导航菜单
个人工具
登录
名字空间
页面
讨论
不转换
变种
不转换
简体
繁體
大陆简体
香港繁體
澳門繁體
大马简体
新加坡简体
台灣正體
查看
阅读
查看源代码
查看历史
操作
搜索
导航
首页
YF-论坛提问
YFRobot-直营店
YFRobot-企业店
Arduino
Arduino之入门篇
Arduino入门教程
Arduino语法参考
Arduino库
Arduino核心代码
编程平台
Mixly库
Mind+库
MakeCode扩展
传感器系列
积木式传感器系列
黑板传感器系列
蓝板传感器系列
Micro:Bit
Micro:Bit 通用基础教程
Valon智能车
Valon-I
帮助
帮助
wiki语法参考
工具箱
链入页面
相关更改
特殊页面
页面信息