Components and supplies
DHT11 Temperature & Humidity Sensor (4 pins)
i2c oled display
Arduino UNO
Breadboard (generic)
Jumper wires (generic)
Apps and platforms
Arduino IDE
Project description
Code
Humidity Temperature Project code
arduino
Humidity meter with DHT11 , 22 or 21, Arduino and I2c OLED display support displaying sensor error and configuring deg C or deg F also display temperature in serial monitor
1/*Code start 2Made by kunsh13 3refer to videeo https://youtu.be/dFksEX6Vnfc 4 Humidity meter with DHT11 , 22 or 21, Arduino and I2c OLED display support displaying sensor error and configuring deg C or deg F also display temperatre in serial monitor 5*/ 6 7#include <DHT.h> 8#include "U8glib.h" 9 10// Display defaults to Degree F. TO use metric display, 11// comment out next line to display temperature in Degree C, 12#define METRIC 13 14#define DHTPIN 3 // what digital pin we're connected to 15// Uncomment whatever type you're using! 16#define DHTTYPE DHT11 // DHT 11 17//#define DHTTYPE DHT22 // DHT 22 (AM2302), AM2321 18//#define DHTTYPE DHT21 // DHT 21 (AM2301) 19 20// Connect pin 1 (on the left) of the sensor to +5V 21// NOTE: If using a board with 3.3V logic like an Arduino Due connect pin 1 22// to 3.3V instead of 5V! 23// Connect pin 2 of the sensor to whatever your DHTPIN is 24// Connect pin 4 (on the right) of the sensor to GROUND 25// Connect a 10K resistor from pin 2 (data) to pin 1 (power) of the sensor 26 27// Initialize DHT sensor. 28// Note that older versions of this library took an optional third parameter to 29// tweak the timings for faster processors. This parameter is no longer needed 30// as the current DHT reading algorithm adjusts itself to work on faster procs. 31DHT dht(DHTPIN, DHTTYPE); 32 33U8GLIB_SSD1306_128X64 u8g(U8G_I2C_OPT_NO_ACK); // Display which does not send AC 34//U8GLIB_SSD1306_128X64 u8g(U8G_I2C_OPT_NONE|U8G_I2C_OPT_DEV_0); // I2C / TWI 35//U8GLIB_SSD1306_128X64 u8g(U8G_I2C_OPT_DEV_0|U8G_I2C_OPT_NO_ACK|U8G_I2C_OPT_FAST); // Fast I2C / TWI 36//U8GLIB_SSD1306_128X64 u8g(U8G_I2C_OPT_NO_ACK); // Display which does not send AC 37 38const uint8_t logo[] PROGMEM = 39{ 40 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 41 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 42 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 43 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 44 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 45 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 46 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 47 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 48 0x0, 0x0, 0x0, 0x18, 0x0, 0x38, 0x6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc3, 49 0x80, 0x0, 0x0, 0x0, 0x18, 0x0, 0x38, 0x6, 0x0, 0x40, 0x0, 0x0, 0x0, 0x0, 0x1, 50 0xc3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0, 0xc0, 0x0, 0x0, 0x0, 0x0, 51 0x1, 0xc3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0, 0xc0, 0x0, 0x0, 0x0, 52 0x0, 0x1, 0xc3, 0x8e, 0xc, 0x6e, 0x60, 0xf8, 0x7, 0xb8, 0x3e, 0x3, 0xfc, 0x38, 0x18, 53 0x0, 0x0, 0x1, 0xc3, 0x8e, 0xc, 0x7e, 0xf0, 0xf8, 0xf, 0xf8, 0x3e, 0x3, 0xfc, 0x38, 54 0x38, 0x0, 0x0, 0x1, 0xff, 0x8e, 0xc, 0x77, 0x30, 0x18, 0xe, 0x38, 0x6, 0x0, 0xc0, 55 0x18, 0x30, 0x0, 0x0, 0x1, 0xff, 0x8e, 0xc, 0x67, 0x30, 0x18, 0x1c, 0x38, 0x6, 0x0, 56 0xc0, 0x1c, 0x30, 0x0, 0x0, 0x1, 0xff, 0x8e, 0xc, 0x63, 0x30, 0x18, 0x1c, 0x38, 0x6, 57 0x0, 0xc0, 0xc, 0x70, 0x0, 0x0, 0x1, 0xc3, 0x8e, 0xc, 0x63, 0x30, 0x18, 0x1c, 0x18, 58 0x6, 0x0, 0xc0, 0xc, 0x60, 0x0, 0x0, 0x1, 0xc3, 0x8e, 0xc, 0x63, 0x30, 0x18, 0x1c, 59 0x18, 0x6, 0x0, 0xc0, 0xe, 0x60, 0x0, 0x0, 0x1, 0xc3, 0x86, 0x1c, 0x63, 0x30, 0x18, 60 0x1c, 0x18, 0x6, 0x0, 0xc0, 0x6, 0xc0, 0x0, 0x0, 0x1, 0xc3, 0x87, 0x1c, 0x63, 0x30, 61 0x18, 0xe, 0x38, 0x6, 0x0, 0xe0, 0x7, 0xc0, 0x0, 0x0, 0x1, 0xc3, 0x87, 0xec, 0x63, 62 0x31, 0xff, 0x8f, 0xd8, 0x7f, 0xe0, 0xfe, 0x3, 0xc0, 0x0, 0x0, 0x1, 0xc3, 0x83, 0xcc, 63 0x63, 0x31, 0xff, 0x87, 0x98, 0x7f, 0xe0, 0x7e, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 64 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, 0x0, 0x0, 0x0, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 65 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x0, 0x0, 0x0, 0x0, 66 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 67 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e, 0x0, 0x0, 68 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 69 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 70 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 71 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x38, 0x0, 0x0, 0x80, 0x0, 0x0, 0x0, 72 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x78, 0x0, 0x1, 0x80, 0x0, 0x0, 73 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x78, 0x0, 0x1, 0x80, 0x0, 74 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e, 0x78, 0x3e, 0x7, 0xf8, 75 0xf, 0x81, 0xcf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x36, 0xd8, 0x7f, 0x7, 76 0xf8, 0x1f, 0xc0, 0xdf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x36, 0xd8, 0xe1, 77 0x81, 0x80, 0x38, 0x60, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x33, 0xd8, 78 0xc1, 0xc1, 0x80, 0x30, 0x70, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x33, 79 0x99, 0xff, 0xc1, 0x80, 0x7f, 0xf0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 80 0x33, 0x99, 0xff, 0xc1, 0x80, 0x7f, 0xf0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 81 0x0, 0x31, 0x99, 0xc0, 0x1, 0x80, 0x70, 0x0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 82 0x0, 0x0, 0x30, 0x18, 0xc0, 0x1, 0x80, 0x30, 0x0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 83 0x0, 0x0, 0x0, 0x30, 0x18, 0xe1, 0xc1, 0xc0, 0x38, 0x70, 0xc0, 0x0, 0x0, 0x0, 0x0, 84 0x0, 0x0, 0x0, 0x0, 0x30, 0x18, 0x7f, 0x81, 0xfc, 0x1f, 0xe0, 0xc0, 0x0, 0x0, 0x0, 85 0x0, 0x0, 0x0, 0x0, 0x0, 0x30, 0x18, 0x3e, 0x0, 0xfc, 0xf, 0x80, 0xc0, 0x0, 0x0, 86 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 87 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 88 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 89 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 90 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 91 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 92 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 93 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 94 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 95 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 96 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 97 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 98 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 99 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 100 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 101 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 102 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 103 0x0, 0x0, 0x0, 0x0 104}; 105 106bool first = true; 107float hum = 0.0; 108float temp = 0.0; 109float hIndex = 0.0; 110bool dht_test(float* humPerc, float* tempF, float* heatIndex); 111 112void setup(void) 113{ 114 Serial.begin(9600); 115 dht.begin(); 116 first = true; 117 118 // assign default color value 119 if (u8g.getMode() == U8G_MODE_R3G3B2) 120 { 121 u8g.setColorIndex(255); // white 122 } 123 else if (u8g.getMode() == U8G_MODE_GRAY2BIT) 124 { 125 u8g.setColorIndex(3); // max intensity 126 } 127 else if (u8g.getMode() == U8G_MODE_BW) 128 { 129 u8g.setColorIndex(1); // pixel on 130 } 131 else if (u8g.getMode() == U8G_MODE_HICOLOR) 132 { 133 u8g.setHiColorByRGB(255, 255, 255); 134 } 135 136 // picture loop 137 u8g.firstPage(); 138 139 do 140 { 141 u8g.drawBitmapP(0, 0, 16, 64, logo); 142 } 143 while (u8g.nextPage()); 144 145 dht_test(&hum, &temp, &hIndex); 146} 147void HumMeter(float* humPerc, float* temp, float* heatIndex) 148{ 149 u8g.setFont(u8g_font_fub11); 150 u8g.setFontRefHeightExtendedText(); 151 u8g.setDefaultForegroundColor(); 152 u8g.setFontPosTop(); 153 u8g.drawStr(4, 0, "Hum %"); 154 u8g.setPrintPos(80, 0); 155 u8g.print(*humPerc); 156#ifdef METRIC 157 // if metric system, display Celsius 158 u8g.drawStr(4, 20, "Temp C"); 159#else 160 //display Farenheit 161 u8g.drawStr(4, 20, "Temp F"); 162#endif 163 164 u8g.setPrintPos(80, 20); 165 u8g.print(*temp); 166 u8g.drawStr(4, 40, "Heat Ind"); 167 u8g.setPrintPos(80, 40); 168 u8g.print(*heatIndex); 169} 170 171void loop(void) 172{ 173 bool result = dht_test(&hum, &temp, &hIndex); 174 175 if (first) 176 { 177 // skip displaying readings first time, as its stale data. 178 first = false; 179 } 180 else 181 { 182 if(result == false) 183 { 184 u8g.firstPage(); 185 do 186 { 187 // sensor error 188 u8g.setFont(u8g_font_fub11); 189 u8g.setFontRefHeightExtendedText(); 190 u8g.setDefaultForegroundColor(); 191 u8g.setFontPosTop(); 192 u8g.drawStr(10, 30, "Sensor Error"); 193 194 } 195 while (u8g.nextPage()); 196 } 197 else 198 { 199 u8g.firstPage(); 200 do 201 { 202 HumMeter(&hum, &temp, &hIndex); 203 } 204 while (u8g.nextPage()); 205 } 206 } 207} 208bool dht_test(float* humPerc, float* temp, float* heatIndex) 209{ 210 // Wait a few seconds between measurements. 211 delay(2000); 212 *humPerc = 0; 213 *temp = 0; 214 *heatIndex = 0; 215 216 // Reading temperature or humidity takes about 250 milliseconds! 217 // Sensor readings may also be up to 2 seconds 'old' (its a very slow sensor) 218 float h = dht.readHumidity(); 219 // Read temperature as Celsius (the default) 220 float t = dht.readTemperature(); 221 // Read temperature as Fahrenheit (isFahrenheit = true) 222 float f = dht.readTemperature(true); 223 224 // Check if any reads failed and exit early (to try again). 225 if (isnan(h) || isnan(t) || isnan(f)) 226 { 227 Serial.println("Failed to read from DHT sensor!/sensor error"); 228 return false; 229 } 230 231 // Compute heat index in Fahrenheit (the default) 232 float hif = dht.computeHeatIndex(f, h); 233 // Compute heat index in Celsius (isFahreheit = false) 234 float hic = dht.computeHeatIndex(t, h, false); 235 236 Serial.print("Humidity: "); 237 Serial.print(h); 238 Serial.print(" %\ "); 239 Serial.print("Temperature: "); 240 Serial.print(t); 241 Serial.print(" *C "); 242 Serial.print(f); 243 Serial.print(" *F\ "); 244 Serial.print("Heat index: "); 245 Serial.print(hic); 246 Serial.print(" *C "); 247 Serial.print(hif); 248 Serial.println(" *F"); 249 *humPerc = h; 250#ifdef METRIC 251 // metric system, load degree celsius 252 *temp = t; 253 *heatIndex = hic; 254#else 255 *temp = f; 256 *heatIndex = hif; 257#endif 258 return true; 259} 260//code ends 261//thanks for using this code mabe by kunsh maurya
Comments
Only logged in users can leave comments
kunshmaurya
0 Followers
•2 Projects
1
kunshsoham
5 years ago
very good work bro!