先前在社区申请到一块Arduino Uno开发板,计划做一个温湿度控制器,主要由DHT11温湿度传感器、IIC接口OLED屏、光隔继电器、按键等组成。 进过一定时间的资料收集和测试,现已实现温湿度的检测。开始检查到的温湿度值一直不变当误了许多的时间,后来才发现问题出在传感器模块上,根本就不能工作,测了一下上拉电阻才有1K,后来自己用元件焊了个传感器模块,问题就解决了,其线路如图1所示。
图1 DHT11温湿度传感器模块线路及用法
由于采用的OLED屏为IIC接口,所有同常规的SPI接口有一定的差别。此外,使用示例的SSD1306程序也没能奏效,或许SSD1306的12864屏与0.96’的双色屏有区别,有待解决或自己重新写一个驱程。现将已有的成果分享分享,已实现的效果如如2所示。该程序相对于普通的程序输出的数据值更多样化,一个温度就有3种表现方式,且有露点值得输出。
图2 温湿度检测结果
至于所用的程序嘛,如下: - //摄氏温度度转化为华氏温度
- double Fahrenheit(double celsius)
- {
- return 1.8 * celsius + 32;
- }
-
- //摄氏温度转化为开氏温度
- double Kelvin(double celsius)
- {
- return celsius + 273.15;
- }
- // 露点(点在此温度时,空气饱和并产生露珠)
- // 参考: http://wahiduddin.net/calc/density_algorithms.htm
- double dewPoint(double celsius, double humidity)
- {
- double A0= 373.15/(273.15 + celsius);
- double SUM = -7.90298 * (A0-1);
- SUM += 5.02808 * log10(A0);
- SUM += -1.3816e-7 * (pow(10, (11.344*(1-1/A0)))-1) ;
- SUM += 8.1328e-3 * (pow(10,(-3.49149*(A0-1)))-1) ;
- SUM += log10(1013.246);
- double VP = pow(10, SUM-3) * humidity;
- double T = log(VP/0.61078); // temp var
- return (241.88 * T) / (17.558-T);
- }
- // 快速计算露点,速度是5倍dewPoint()
- // 参考: http://en.wikipedia.org/wiki/Dew_point
- double dewPointFast(double celsius, double humidity)
- {
- double a = 17.271;
- double b = 237.7;
- double temp = (a * celsius) / (b + celsius) + log(humidity/100);
- double Td = (b * temp) / (a - temp);
- return Td;
- }
- #include <dht11.h>
- dht11 DHT11;
- #define DHT11PIN 2
- void setup()
- {
- Serial.begin(9600);
- Serial.println("DHT11 TEST PROGRAM ");
- Serial.print("LIBRARY VERSION: ");
- Serial.println(DHT11LIB_VERSION);
- Serial.println();
- }
- void loop()
- {
- Serial.println("\n");
- int chk = DHT11.read(DHT11PIN);
- Serial.print("Read sensor: ");
- switch (chk)
- {
- case DHTLIB_OK:
- Serial.println("OK");
- break;
- case DHTLIB_ERROR_CHECKSUM:
- Serial.println("Checksum error");
- break;
- case DHTLIB_ERROR_TIMEOUT:
- Serial.println("Time out error");
- break;
- default:
- Serial.println("Unknown error");
- break;
- }
- Serial.print("Humidity (%): ");
- Serial.println((float)DHT11.humidity, 2);
- Serial.print("Temperature (oC): ");
- Serial.println((float)DHT11.temperature, 2);
- Serial.print("Temperature (oF): ");
- Serial.println(Fahrenheit(DHT11.temperature), 2);
- Serial.print("Temperature (K): ");
- Serial.println(Kelvin(DHT11.temperature), 2);
- Serial.print("Dew Point (oC): ");
- Serial.println(dewPoint(DHT11.temperature, DHT11.humidity));
- Serial.print("Dew PointFast (oC): ");
- Serial.println(dewPointFast(DHT11.temperature, DHT11.humidity));
- delay(2000);
- }
复制代码后续的任务则是实现OLED屏显示数据,并配置按键来设置控制值以控制继电器的开合动作。
|