[转载] 树莓派读取温湿度传感器DHT11
原文地址: http://blog.csdn.net/liang890319/article/details/8739683
硬件:
树莓派 2.0
DHT模块 接树莓派5V GND GPIO1
功能:读取传感器数据并打印出来
//
//mydht11.c
//
#include <wiringPi.h>
#include <stdio.h>
#include <stdlib.h> typedef unsigned char uint8;
typedef unsigned int uint16;
typedef unsigned long uint32; #define HIGH_TIME 32 int pinNumber =; //use gpio1 to read data
uint32 databuf; uint8 readSensorData(void)
{
uint8 crc;
uint8 i; pinMode(pinNumber,OUTPUT); // set mode to output
digitalWrite(pinNumber, ); // output a high level
delay();
digitalWrite(pinNumber, ); // output a low level
pinMode(pinNumber, INPUT); // set mode to input
pullUpDnControl(pinNumber,PUD_UP); delayMicroseconds();
if(digitalRead(pinNumber)==) //SENSOR ANS
{
while(!digitalRead(pinNumber)); //wait to high for(i=;i<;i++)
{
while(digitalRead(pinNumber)); //data clock start
while(!digitalRead(pinNumber)); //data start
delayMicroseconds(HIGH_TIME);
databuf*=;
if(digitalRead(pinNumber)==) //
{
databuf++;
}
} for(i=;i<;i++)
{
while(digitalRead(pinNumber)); //data clock start
while(!digitalRead(pinNumber)); //data start
delayMicroseconds(HIGH_TIME);
crc*=;
if(digitalRead(pinNumber)==) //
{
crc++;
}
}
return ;
}
else
{
return ;
}
} int main (void)
{ printf("Use GPIO1 to read data!\n"); if (- == wiringPiSetup()) {
printf("Setup wiringPi failed!");
return ;
} pinMode(pinNumber, OUTPUT); // set mode to output
digitalWrite(pinNumber, ); // output a high level printf("Enter OS-------\n");
while() {
pinMode(pinNumber,OUTPUT); // set mode to output
digitalWrite(pinNumber, ); // output a high level
delay();
if(readSensorData())
{
printf("Congratulations ! Sensor data read ok!\n");
printf("RH:%d.%d\n",(databuf>>)&0xff,(databuf>>)&0xff);
printf("TMP:%d.%d\n",(databuf>>)&0xff,databuf&0xff);
databuf=;
}
else
{
printf("Sorry! Sensor dosent ans!\n");
databuf=;
}
}
return ;
}
源代码2:
//dht11.c
#include <wiringPi.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#define MAX_TIME 85
#define DHT11PIN 1
#define ATTEMPTS 5 //retry 5 times when no response
int dht11_val[]={,,,,}; int dht11_read_val(){
uint8_t lststate=HIGH; //last state
uint8_t counter=;
uint8_t j=,i;
for(i=;i<;i++)
dht11_val[i]=; //host send start signal
pinMode(DHT11PIN,OUTPUT); //set pin to output
digitalWrite(DHT11PIN,LOW); //set to low at least 18ms
delay();
digitalWrite(DHT11PIN,HIGH); //set to high 20-40us
delayMicroseconds(); //start recieve dht response
pinMode(DHT11PIN,INPUT); //set pin to input
for(i=;i<MAX_TIME;i++)
{
counter=;
while(digitalRead(DHT11PIN)==lststate){ //read pin state to see if dht responsed. if dht always high for 255 + 1 times, break this while circle
counter++;
delayMicroseconds();
if(counter==)
break;
}
lststate=digitalRead(DHT11PIN); //read current state and store as last state.
if(counter==) //if dht always high for 255 + 1 times, break this for circle
break;
// top 3 transistions are ignored, maybe aim to wait for dht finish response signal
if((i>=)&&(i%==)){
dht11_val[j/]<<=; //write 1 bit to 0 by moving left (auto add 0)
if(counter>) //long mean 1
dht11_val[j/]|=; //write 1 bit to 1
j++;
}
}
// verify checksum and print the verified data
if((j>=)&&(dht11_val[]==((dht11_val[]+dht11_val[]+dht11_val[]+dht11_val[])& 0xFF))){
printf("RH:%d,TEMP:%d\n",dht11_val[],dht11_val[]);
return ;
}
else
return ;
} int main(void){
int attempts=ATTEMPTS;
if(wiringPiSetup()==-)
exit();
while(attempts){ //you have 5 times to retry
int success = dht11_read_val(); //get result including printing out
if (success) { //if get result, quit program; if not, retry 5 times then quit
break;
}
attempts--;
delay();
}
return ;
}
wiringpi是通过C语言控制树莓派GPIO口的头文件。在C语言中包含这个头文件之后可以很简单的调用已经封装好的方法来控制树莓派GPIO口。程序需要先安装。
wiringpi官网:http://wiringpi.com/
wiringpi下载和安装:http://wiringpi.com/download-and-install/
wiringpi文档:http://wiringpi.com/reference/
编译和运行:
写好C文件后,通过如下命令进行编译:
$ gcc -Wall -o dt11_test dt11-.c -lwiringPi #连接动态库
gcc是编译器,-Wall是在编译时显示警告信息,-o executefilename cfilename.c是将cfilename.c文件编译成文件名为executefilename的可执行文件,-lwiringPi是将wiringPi头文件包含在可执行文件中。
编译完之后会生成文件名为executefilename的文件,使用root权限执行如下命令即可运行:
运行程序:
$ sudo ./dt_11_test
wiringPi
#wiringPi 源代码,我已经同步到bitbucket.org了。
https://bitbucket.org/sndnvaps/wiringpi/
github.com
https://github.com/sndnvaps/WiringPi
编译wiringpi 动态库
使用git clone git@bitbucket.org:sndnvaps/wiringpi.git -b master_upstream #下载源代码
cd wiringpi
./build
[转载] 树莓派读取温湿度传感器DHT11的更多相关文章
- STM32读取温湿度传感器DHT11和DHT21(AM2301)系列问题
1.DHT11和DHT21传感器 这两种传感器都是奥松公司的产品,具体的传感器说明书在其官网上有(www.aosong.com). DHT11 数字温湿度传感器是一款含有已校准数字信号输出的温湿度复合 ...
- 进阶之路(中级篇) - 016 温湿度传感器DHT11
如果想使用 Arduino 开发板驱动 DHT11 来获取温湿度的时候建议使用第三方的库,这样可以加快程序的开发速度,而且不容易出错,下面的代码我已经安转了第三方的库了.详细的安装方法请参考极客先锋的 ...
- 温湿度传感器DHT11程序示例
DHT11概述 HT11数字温湿度传感器是一款含有已校准数字信号输出的温湿度复合传感器. 它应用专用的数字模块采集技术和温湿度传感技术,确保产品具有极高的可靠性与卓越的长期稳定性.传感器包括一个电阻式 ...
- 使用Arduino Wire Library读取温湿度传感器AM2321
AM2321是采用I2C总线或单总线通讯的国产温湿度传感器.在AM2321手册中,当采用I2C通讯时,手册指定了多处需要主机等待的时间间隔,包括: (1)唤醒传感器时,从机不回复ACK,但主机主要等待 ...
- 在树莓派上读取DHT11温湿度传感器-python代码实现及常见问题(全面简单易懂)
最近由于自己的课题需要,想要用在树莓派上使用DHT11温湿度传感器来读取空气中温湿度,遇到了几个问题,解决之后也对之前的知识进行了回顾,总结,特整理如下,希望能给也在学习树莓派的小伙伴们带来一些帮助. ...
- 基于CC2530/CC2430 的温湿度采集系统--DHT11
采用常用的温湿度传感器DHT11 参见论坛中实例视频讲解http://bphero.com.cn/forum.php?mod=viewthread&tid=15&extra=page% ...
- Arduino I2C + 温湿度传感器AM2321
(2015.5.17:本日志的内容有所更新,参见<使用Arduino Wire Library读取温湿度传感器AM2321>.) AM2321是广州奥松电子生产的数字式温湿度传感器.虽是国 ...
- 树莓派使用DHT11温湿度传感器
一.相关介绍 DHT11介绍: DHT11是一款比较便宜的温湿度传感器模块.读取数据只需要占用一个IO口.能够同时测量温度和相对湿度. DHT11的数据手册可以看这里:http://wenku.bai ...
- DHT11温湿度传感器编程思路以及代码的实现(转载)
源自:https://blog.csdn.net/qq_34952376/article/details/81193938 在我们刚开始进入单片机的学习中,练习写传感器的时序是必不可少的,其实我比较推 ...
随机推荐
- [C++]const修饰符
Date: 2014-1-1 Summary: const 修饰符笔记 Contents: 1.const 修饰符 声明一个常量数据类型 , 在编译时就确定数据类型 2.const 与 指针 一般情况 ...
- 菜鸟玩云计算之十一:Hadoop 手动安装指南
Hadoop 手动安装指南 cheungmine 2013-4 本文用于指导在Windows7,VMWare上安装Ubuntu, Java, Hadoop, HBase实验环境. 本指南用于实验的软件 ...
- UVA 10828 - Back to Kernighan-Ritchie(概率+高斯消元)
UVA 10828 - Back to Kernighan-Ritchie 题目链接 题意:给图一个流程图,有结点的流程,每次进入下一个流程概率是均等的,有q次询问,求出每次询问结点的运行期望 思路: ...
- 从零开始,使用python快速开发web站点(1)
环境:ubuntu 12.04 python版本: 2.73 ok,首先,既然是从零开始,我们需要的是一台可以运行的python的计算机环境,并且假设你已经安装好了python, (ubuntu 或 ...
- poj 2769 Reduced ID Numbers(memset使用技巧)
Description T. Chur teaches various groups of students at university U. Every U-student has a unique ...
- DB2错误代码
db2错误代码大全 博客分类: 数据库 sqlcode sqlstate 说明 000 00000 SQL语句成功完毕 01xxx SQL语句成功完毕,可是有警告 +012 01545 未限定的列名被 ...
- UC高级编程--实现myls程序
跟着达内视频,学习UC高级编程,完毕程序小练习. 主要练习的函数为: int lstat(const char *path, struct stat *buf); size_t strftime( ...
- 王立平--Unity中间GUI Skin
C#文字: public class NewBehaviourScript2 : MonoBehaviour { public Texture t; public GUISkin skin; // U ...
- maven项目建立pom.xml报无法解析org.apache.maven.plugins:maven-resources-plugin:2.4.3
一.发现问题 建立maven项目后,pom.xml在显示红叉.鼠标放上去,显示Executiondefault-testResources of goalorg.apache.maven.plugin ...
- 流动python - 一个极简主义event制
event至少该系统的核心,以满足: 1.存储容器事件,可以被添加到事件来删除 2.触发事件fire 守则. class Event(list): def __call__(self, *args, ...