2021/10/23

#5 2021 一起學 Raspberry Pi 4 - 溫溼度感測器DHT11由 ESP32 經 MQTT 送到 Node-RED

大家好, 今天來和大家分享如何把 DHT11溫溼度感測器上的資料由ESP32 讀取, 並用MQTT Client 發佈到 Mosquitto Server(MQTT), 再送到 Node-RED上, 再把這些資料在資訊看板上顯示出來. 


本篇使用到的程式碼:

  1. //---- Setup update frequency -----//
  2. const long TEMP_updateInterval = 10000; // How long to change temp and update, 10000 = 10 sec
  3. unsigned long TEMP_currentMillis = 0;
  4. unsigned long TEMP_previousMillis = 0; // store last time temp update
  5.  
  6. #include "DHT.h"
  7. #define DHTPIN 23 //ESP32 pin 23
  8. #define DHTTYPE DHT11
  9. DHT dht(DHTPIN, DHTTYPE); // Initialize DHT sensor
  10.  
  11. /*
  12. SimpleMQTTClient.ino
  13. The purpose of this exemple is to illustrate a simple handling of MQTT and Wifi connection.
  14. Once it connects successfully to a Wifi network and a MQTT broker, it subscribe to a topic and send a message to it.
  15. It will also send a message delayed 5 seconds later.
  16. */
  17.  
  18. #include "EspMQTTClient.h"
  19.  
  20. EspMQTTClient client(
  21. "Your_WiFi_AP", // Wi-Fi AP name
  22. "Wi-FI_Password", // Wi-Fi Password
  23. "192.168.0.119", // MQTT Broker server ip
  24. "", // Broker user name; Can be omitted if not needed
  25. "", // Broker password; Can be omitted if not needed
  26. "ESP32_Client", // Client name that uniquely identify your device
  27. 1883 // The MQTT port, default to 1883. this line can be omitted
  28. );
  29.  
  30. void setup()
  31. {
  32. Serial.begin(115200);
  33. //Start DH11 sensor
  34. dht.begin();
  35. // Optionnal functionnalities of EspMQTTClient :
  36. client.enableDebuggingMessages(); // Enable debugging messages sent to serial output
  37. //client.enableHTTPWebUpdater(); // Enable the web updater. User and password default to values of MQTTUsername and MQTTPassword. These can be overrited with enableHTTPWebUpdater("user", "password").
  38. //client.enableLastWillMessage("TestClient/lastwill", "I am going offline"); // You can activate the retain flag by setting the third parameter to true
  39. }
  40.  
  41. // This function is called once everything is connected (Wifi and MQTT)
  42. // WARNING : YOU MUST IMPLEMENT IT IF YOU USE EspMQTTClient
  43. void onConnectionEstablished()
  44. {
  45. // Subscribe to "mytopic/test" and display received message to Serial
  46. client.subscribe("message/hello", [](const String &payload)
  47. { Serial.println(payload); });
  48.  
  49. // Subscribe to "mytopic/wildcardtest/#" and display received message to Serial
  50. //client.subscribe("mytopic/wildcardtest/#", [](const String &topic, const String &payload)
  51. // { Serial.println("(From wildcard) topic: " + topic + ", payload: " + payload); });
  52.  
  53. // Publish a message to "mytopic/test"
  54. client.publish("studio/temp1", "Let's go!"); // You can activate the retain flag by setting the third parameter to true
  55.  
  56. // Execute delayed instructions
  57. //client.executeDelayed(5 * 1000, []()
  58. // { client.publish("mytopic/wildcardtest/test123", "This is a message sent 5 seconds later"); });
  59. }
  60.  
  61.  
  62.  
  63. void loop()
  64. {
  65.  
  66. TEMP_currentMillis = millis();
  67. if(TEMP_currentMillis - TEMP_previousMillis >= TEMP_updateInterval){
  68. TEMP_previousMillis = TEMP_currentMillis;
  69.  
  70. // Reading temperature or humidity takes about 250 milliseconds!
  71. // Sensor readings may also be up to 2 seconds 'old' (its a very slow sensor)
  72. float humidity = dht.readHumidity();
  73. float temperature = dht.readTemperature();
  74. // Read temperature as Fahrenheit (isFahrenheit = true)
  75. //float f = dht.readTemperature(true);
  76.  
  77. // Check if any reads failed and exit early (to try again).
  78. if (isnan(humidity) || isnan(temperature))
  79. {
  80. Serial.println(F("Failed to read from DHT sensor!"));
  81. return;
  82. }
  83.  
  84. String tmp = "Current Temperature: ";
  85. String hud = "Current Humidity: ";
  86. Serial.print(tmp);
  87. Serial.println(String(temperature));
  88. Serial.print(hud);
  89. Serial.println(String(humidity));
  90. //Publish
  91. client.publish("studio/temp1", String(temperature));
  92. client.publish("studio/humd1", String(humidity));
  93.  
  94. // Here is how to subscribe
  95. //client.subscribe("message/hello", [](const String &payload) { Serial.println(payload); });
  96. }
  97.  
  98. client.loop();
  99. }
  100.  

*** 影片中忘了說明, 在 VS Code 裡, 按下 F1 到 Arduino Library Manager 裡, 搜尋 EspMQTTClient V.11.1版本, 並按下安裝 , 程式才能正確執行喔~~ ***


如果時間不夠的朋友, 也可以從以下的時間軸挑選想看的部份即可!

影片時間軸:

00:29 課程開始 00:52 如何將 DHT11 連接到 ESP32 (接線圖) 00:59 在 ESP32 利用 EspMQTTClient 來寫程式 01:22 安裝 DHT11 程式庫 02:16 設定 EspMQTTClient 02:45 由 Raspberry Pi Terminal 找出 Mosquitto(MQTT) IP 地址 04:51 不要用 delay() 在程式 Loop 裡! 06:50 上傳並檢查發佈/訂閱的 messages 07:54 安裝 Node-RED 資訊看板(在 Node-RED 中) 08:57 按主題來訂閱消息 09:58 設置 MQTT 服務器的位置 11:34 建立資訊看板選項 Tabs Links & Groups 17:00 建立歷史資料資訊看板 20:32 查看資訊看板 20:50 資訊看板中的選項 Tabs Links & Groups在哪裡

下一集將介紹如何把歷史資料存儲到樹莓派的資料庫(influxDBvor MySQL)中, 以取得長時間的記錄資料. 


Stonez56 一起來學樹莓派系列影片: 


參考資料:

EspMQTTClient: https://github.com/plapointe6/EspMQTTClient 

No comments:

Post a Comment