标题:
DS18B20数字温度传感器实验(XHX格式)
[打印本页]
作者:
爱生活学习
时间:
2018-9-30 14:42
标题:
DS18B20数字温度传感器实验(XHX格式)
实验器件 :
Arduino 控制板 1 块、USB 数据线 1 根、面包板 1 块、面包板专用跳线 1 盒、镊子 1 把、DS1307 RTC 模块。
实验电路图:
DS18B20.jpg
(84.06 KB, 下载次数: 96)
下载附件
创客集结号
2018-9-30 14:40 上传
实验原理 :
本实验需要使用 OneWire 库。DS1307 RTC模块,上面集成了一个DS18B20温度传感器,还集成了另外一个存储芯片。
Arduino代码 :
#include <OneWire.h>
// DS18S20 Temperature chip i/o
OneWire ds(2); // on pin 2
void setup(void) {
// initialize inputs/outputs
// start serial port
Serial.begin(9600);
}
void loop(void) {
byte i;
byte present = 0;
byte data[12];
byte addr[8];
if ( !ds.search(addr)) {
Serial.print("No more addresses.\n");
ds.reset_search();
return;
}
Serial.print("R=");
for( i = 0; i < 8; i++) {
Serial.print(addr[i], HEX);
Serial.print(" ");
}
if ( OneWire::crc8( addr, 7) != addr[7]) {
Serial.print("CRC is not valid!\n");
return;
}
if ( addr[0] == 0x10) {
Serial.print("Device is a DS18S20 family device.\n");
}
else if ( addr[0] == 0x28) {
Serial.print("Device is a DS18B20 family device.\n");
}
else {
Serial.print("Device family is not recognized: 0x");
Serial.println(addr[0],HEX);
return;
}
ds.reset();
ds.select(addr);
ds.write(0x44,1); // start conversion, with parasite power on at the end
delay(1000); // maybe 750ms is enough, maybe not
// we might do a ds.depower() here, but the reset will take care of it.
present = ds.reset();
ds.select(addr);
ds.write(0xBE); // Read Scratchpad
Serial.print("P=");
Serial.print(present,HEX);
Serial.print(" ");
for ( i = 0; i < 9; i++) { // we need 9 bytes
data[i] = ds.read();
Serial.print(data[i], HEX);
Serial.print(" ");
}
Serial.print(" CRC=");
Serial.print( OneWire::crc8( d
ata, 8), HEX);
Serial.println();
}
复制代码
[创客集结号转载]
欢迎光临 (http://www.51hei.com/bbs/)
Powered by Discuz! X3.1