Internet of Things แสดงผลอุณหภูมิ DHT11


บทความนี้เราจะเรียนรู้วิธีการเชื่อมต่อเซ็นเซอร์อุณหภูมิและความชื้นยอดนิยม DHT11 กับไมโครคอนโทรลเลอร์ ESP32 โดย DHT11 เป็นเซ็นเซอร์วัดอุณหภูมิและความชื้น เพื่อวัดอุณหภูมิและความชื้นของบรรยากาศในสภาพแวดล้อมเฉพาะหรือในพื้นที่ปิดที่ จำกัด และ แสดงผลผ่านทางเครือข่ายอินเตอร์เน็ต ดูได้ทั่วโลก ที่เว็บไซต์ http://www.iotsiam.net/ ด้วยเทคโนโลยี IoT ซึ่งมีความจำเป็นต้องทำงานร่วมกับอุปกรณ์ประเภท Sensors ซึ่งเปรียบเสมือนการเติมสมองให้กับอุปกรณ์ต่างๆ ที่ขาดไม่คือการเชื่อมต่ออินเตอร์เน็ต เพื่อให้อุปกรณ์สามารถรับส่งข้อมูลถึงกันได้

รายการอุปกรณ์


ขั้นตอนการทํางาน


1 : โปรแกรมแรก กับ Keyestudio ESP32




สวัสดีชาวโลก (Hello World) คือ คำง่าย ๆ สำหรับการเขียนโปรแกรมแรกของโปรแกรมเมอร์ เป็นโปรแกรมคอมพิวเตอร์พื้นฐานที่ทำการแสดงผลคำว่า “Hello world” บนอุปกรณ์แสดงผล ซึ่งเป็นหนึ่งในโปรแกรมที่ง่ายที่สุดเท่าที่จะเป็นไปได้ในการเขียนภาษาโปรแกรมต่างๆ ตามขั้นตอนลิงค์ด้านล่าง


2 : ทดสอบใช้งาน เซ็นเซอร์ DHT11


เชื่อมต่อ เซ็นเซอร์ DHT11 เข้ากับ Keyestudio ESP32-IO Shield ตามรูปด้านล่าง

ทดสอบใช้งาน เซ็นเซอร์ DHT11



ติดตั้งไลบรารี DHT sensor library


สำหรับการใช้งานเซ็นเซอร์ DHT11 ต้องติดตั้งไลบรารี DHT sensor library เพิ่มเข้าไปที่ Arduino IDE


ไปที่ Tools -> Manage Libraries…


ไปที่ช่องค้นหา พิมพ์ DHT  (เพื่อค้นหา DHT sensor library) เลื่อนเมาส์ไปที่ DHT sensor library เลือกเวอร์ชัน แล้ว คลิก Install


คลิก Install all

คลิก Install all


INSTALLED แสดงการติดตั้งสำเร็จ

INSTALLED แสดงการติดตั้งสำเร็จ

ตรวจสอบที่ Sketch -> Include Library  จะพบ ไลบรารี DHT sensor library เพิ่มเข้ามาใน Arduino IDE ของเรา



อัพโหลดโค้ดไปที่ Keyestudio ESP32 ตามโค้ดด้านล่างนี้


#include "DHT.h"
#define DHTPIN 27     // Digital pin connected to the DHT sensor


// Uncomment whatever type you're using!
#define DHTTYPE DHT11   // DHT 11
// #define DHTTYPE DHT22   // DHT 22  (AM2302), AM2321

DHT dht(DHTPIN, DHTTYPE);

void setup() {
  Serial.begin(9600);
  Serial.println(F("DHTxx test!"));

  dht.begin();
}

void loop() {
  // Wait a few seconds between measurements.
  delay(2000);

  // Reading temperature or humidity takes about 250 milliseconds!
  // Sensor readings may also be up to 2 seconds 'old' (its a very slow sensor)
  float h = dht.readHumidity();
  // Read temperature as Celsius (the default)
  float t = dht.readTemperature();
  // Read temperature as Fahrenheit (isFahrenheit = true)
  float f = dht.readTemperature(true);

  // Check if any reads failed and exit early (to try again).
  if (isnan(h) || isnan(t) || isnan(f)) {
    Serial.println(F("Failed to read from DHT sensor!"));
    return;
  }

  // Compute heat index in Fahrenheit (the default)
  float hif = dht.computeHeatIndex(f, h);
  // Compute heat index in Celsius (isFahreheit = false)
  float hic = dht.computeHeatIndex(t, h, false);

  Serial.print(F("Humidity: "));
  Serial.print(h);
  Serial.print(F("%  Temperature: "));
  Serial.print(t);
  Serial.print(F("°C "));
  Serial.print(f);
  Serial.print(F("°F  Heat index: "));
  Serial.print(hic);
  Serial.print(F("°C "));
  Serial.print(hif);
  Serial.println(F("°F"));
}


แสดงการอัพโหลดสำเร็จ


เปิดหน้าต่าง Serial Monitor  โดยไปที่ Tools -> Serial Monitor

ที่มุมขวาล่าง ของ Serial Monitor เลือกเป็น 9600 baud ที่ Serial Monitor แสดงค่าอุณหภูมิและความชื้น ประมาณรูปด้านล่าง แสดงว่า เซ็นเซอร์ DHT11 พร้อมใช้งานแล้ว


3 : อัพโหลดโค้ด Internet of Things แสดงผลอุณหภูมิ DHT11


อัพโหลดโค้ดไปที่ Keyestudio ESP32 ตามโค้ดด้านล่างนี้

#include "DHT.h"
#define DHTPIN 27
#define DHTTYPE DHT11
DHT dht(DHTPIN, DHTTYPE);

#include <WiFi.h>
#include <HTTPClient.h>

const char* ssid = "YOUR_SSID";
const char* password = "YOUR_PASS";

void setup() {
  Serial.begin(115200);
  Serial.println(F("DHTxx test!"));

  dht.begin();
  WiFi.begin(ssid, password);
  Serial.println("Connecting");
  while (WiFi.status() != WL_CONNECTED) {
    delay(500);
    Serial.print(".");
  }
  Serial.println("");
  Serial.print("Connected to WiFi network with IP Address: ");
  Serial.println(WiFi.localIP());

}

void loop() {

  delay(1000);

  float h = dht.readHumidity();
  String myH = "";
  myH.concat(h);
  float t = dht.readTemperature();
  String myT = "";
  myT.concat(t);

  String AddData = "http://www.iotsiam.net/dht/data.aspx?Temp=" + myT + "&Humi=" + myH;

  if (WiFi.status() == WL_CONNECTED) {
    HTTPClient http;
    http.begin(AddData);
    http.addHeader("Content-Type", "application/x-www-form-urlencoded");

    String httpRequestData = "http://www.iotsiam.net/";


    Serial.print("httpRequestData: ");
    Serial.println(httpRequestData);

    int httpResponseCode = http.POST(httpRequestData);

    if (httpResponseCode > 0) {
      Serial.print("HTTP Response code: ");
      Serial.println(httpResponseCode);
    }
    else {
      Serial.print("Error code: ");
      Serial.println(httpResponseCode);
    }

    // Free resources
    http.end();
  }
  else {
    Serial.println("WiFi Disconnected");
  }

}


ก่อน อัพโหลดโค้ด มีค่าคงที่ต้องแก้ไข อยู่ 2 ค่าด้วยกันคือ

1. YOUR_SSID แก้เป็น ชื่อ WiFi ที่ต้องการเชื่อมต่อ

2. YOUR_PASS แก้เป็น รหัสผ่าน ของ WiFi ที่ต้องการเชื่อมต่อ




4 : ตรวจสอบการเชื่อมต่อ WiFi เพื่อเข้าถึงเครือข่ายอินเตอร์เน็ต


เปิดหน้าต่าง Serial Monitor  โดยไปที่ Tools -> Serial Monitor

แสดงผลการเชื่อมต่อ WiFi ไม่ได้ ให้ตรวจสอบความถูกต้องของค่า YOUR_SSID และ YOUR_PASS รวมทั้งการทำงานของระบบ WiFi ที่ต้องการเชื่อมต่อ


แสดงผลการเชื่อมต่อ WiFi และเข้าถึงเครือข่ายอินเตอร์เน็ตสำเร็จ

5 : ทดสอบการทำงาน


เปิดเว็บบราวเซอร์ ไปที่


จะแสดง การอ่านค่าจาก เซ็นเซอร์ DHT11 และแสดงผล อุณหภูมิและความชื้น ผ่านทางเครือข่ายอินเตอร์เน็ต ดูได้ทั่วโลก

Leave a Reply

Your email address will not be published. Required fields are marked *

เราใช้คุกกี้เพื่อพัฒนาประสิทธิภาพ และประสบการณ์ที่ดีในการใช้เว็บไซต์ของคุณ คุณสามารถศึกษารายละเอียดได้ที่ นโยบายความเป็นส่วนตัว และสามารถจัดการความเป็นส่วนตัวเองได้ของคุณได้เองโดยคลิกที่ ตั้งค่า

Privacy Preferences

คุณสามารถเลือกการตั้งค่าคุกกี้โดยเปิด/ปิด คุกกี้ในแต่ละประเภทได้ตามความต้องการ ยกเว้น คุกกี้ที่จำเป็น

Allow All
Manage Consent Preferences
  • Always Active

Save