资料介绍
描述
我需要检查空调房的确切温度,以显示空调房与遥控器上显示的不一样。所以我决定做这个。
您将需要 x1 面包板(可选)
x1 套电线
x1 dhtxx
x1 Arduino uno
所以连接(从左到右)
引脚 1 至 5v
引脚 2 到数字引脚 7
引脚 3(留下它)
引脚 4 接地
它将以 C、F、K 和湿度显示
这里的代码
谢谢
//Libraries
#include ;
//#include:
//Constants
#define DHTPIN 7 // what pin we're connected to
#define DHTTYPE DHT22 // DHT 22 (AM2302)
DHT dht(DHTPIN, DHTTYPE); //// Initialize DHT sensor for normal 16mhz Arduino
//Variables
int chk;
float hum; //Stores humidity value
float temp; //Stores temperature value
float faran;
float kel;
void setup()
{
Serial.begin(9600);
dht.begin();
}
void loop()
{
delay(2000);
//Read data and store it to variables hum and temp
hum = dht.readHumidity();
temp= dht.readTemperature();
//Print temp and humidity values to serial monitor
Serial.print("Humidity : ");
Serial.print(hum);
Serial.println(" %");
Serial.print("Temp :");
Serial.print(temp);
Serial.println(" Celsius");
faran = (temp * 9.0) / 5.0 + 32;
Serial.print("Faranheit: ");
Serial.print(faran);
Serial.println(" F");
kel = temp + 273.15;
Serial.print("Kelvin: ");
Serial.print(kel);
Serial.println(" K");
Serial.println("");
Serial.println("");
delay(5000); //Delay 5 sec
// This is free and unencumbered software released into the public domain Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means.In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law.
//THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OROTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OROTHER DEALINGS IN THE SOFTWARE.
//For more information, please refer to }
下载该资料的人也在下载
下载该资料的人还在阅读
更多 >
- CNC Control with Arduino Mega256源代码分享 4次下载
- Arduino Uno LED闪烁代码
- Arduino Uno国内改版电路原理图下载 0次下载
- Arduino编程基础(一)——Arduino语言资料下载
- 使用Arduino应用LCD1602的代码免费下载 3次下载
- Arduino雨滴传感器的使用示例代码免费下载 43次下载
- 使用RDA5807制作收音机的Arduino代码免费下载 67次下载
- 使用Arduino实现1602显示的测试源代码免费下载 7次下载
- Arduino单片机的SD卡函数封装代码免费下载
- 使用Arduino设计的温控电风扇代码免费下载 13次下载
- Arduino_1.6.6_软件下载 223次下载
- 《Arduino与LabVIEW开发实战》配套代码 28次下载
- Arduino智能小车源代码 60次下载
- Arduino 电子积木基础套装源代码 13次下载
- Arduino控制器使用图文教程 0次下载
- 如何使用Python和PinPong库控制Arduino 718次阅读
- 基于Arduino的机器学习开发 1.7w次阅读
- 如何使用Arduino控制大型线性执行器 1945次阅读
- 使用Wii nunchuk手柄连接Arduino控制伺服电机的方法 3697次阅读
- 如何使用Arduino测量障碍物的距离 7052次阅读
- 如何从网页控制arduino? 3836次阅读
- dfrobotRomeo 三合一Arduino兼容控制器介绍 2372次阅读
- 详解Arduino Uno控制直流电机之应用 2w次阅读
- arduino如何控制舵机及详细步骤 16.3w次阅读
- arduino连接显示屏方法详解 4.7w次阅读
- Arduino如何安装驱动_Arduino安装驱动步骤 5.8w次阅读
- 浅谈Arduino和树莓派的区别 2.1w次阅读
- arduino用什么语言编程 6.9w次阅读
- arduino是什么以及arduino能干什么 4.4w次阅读
- arduino开发板有什么用 2w次阅读
下载排行
本周
- 1山景DSP芯片AP8248A2数据手册
- 1.06 MB | 532次下载 | 免费
- 2RK3399完整板原理图(支持平板,盒子VR)
- 3.28 MB | 339次下载 | 免费
- 3TC358743XBG评估板参考手册
- 1.36 MB | 330次下载 | 免费
- 4DFM软件使用教程
- 0.84 MB | 295次下载 | 免费
- 5元宇宙深度解析—未来的未来-风口还是泡沫
- 6.40 MB | 227次下载 | 免费
- 6迪文DGUS开发指南
- 31.67 MB | 194次下载 | 免费
- 7元宇宙底层硬件系列报告
- 13.42 MB | 182次下载 | 免费
- 8FP5207XR-G1中文应用手册
- 1.09 MB | 178次下载 | 免费
本月
- 1OrCAD10.5下载OrCAD10.5中文版软件
- 0.00 MB | 234315次下载 | 免费
- 2555集成电路应用800例(新编版)
- 0.00 MB | 33566次下载 | 免费
- 3接口电路图大全
- 未知 | 30323次下载 | 免费
- 4开关电源设计实例指南
- 未知 | 21549次下载 | 免费
- 5电气工程师手册免费下载(新编第二版pdf电子书)
- 0.00 MB | 15349次下载 | 免费
- 6数字电路基础pdf(下载)
- 未知 | 13750次下载 | 免费
- 7电子制作实例集锦 下载
- 未知 | 8113次下载 | 免费
- 8《LED驱动电路设计》 温德尔著
- 0.00 MB | 6656次下载 | 免费
总榜
- 1matlab软件下载入口
- 未知 | 935054次下载 | 免费
- 2protel99se软件下载(可英文版转中文版)
- 78.1 MB | 537798次下载 | 免费
- 3MATLAB 7.1 下载 (含软件介绍)
- 未知 | 420027次下载 | 免费
- 4OrCAD10.5下载OrCAD10.5中文版软件
- 0.00 MB | 234315次下载 | 免费
- 5Altium DXP2002下载入口
- 未知 | 233046次下载 | 免费
- 6电路仿真软件multisim 10.0免费下载
- 340992 | 191187次下载 | 免费
- 7十天学会AVR单片机与C语言视频教程 下载
- 158M | 183279次下载 | 免费
- 8proe5.0野火版下载(中文版免费下载)
- 未知 | 138040次下载 | 免费
评论
查看更多