沒開冷氣的濕度真高
自製濕度/溫度感測器
這個東西之後影片會用到
#arduino #dht11
同時也有6部Youtube影片,追蹤數超過2,260的網紅UJ class,也在其Youtube影片中提到,#arduino #dht11 #rtc #ds3231#sdcard #excel #datamonitor #energyhouse #gopro Intelligent Energy Saving House with Arduino Data Monitor (DHT11, DS3231,...
「dht11」的推薦目錄:
- 關於dht11 在 開開大叔 Facebook 的最佳解答
- 關於dht11 在 Audom Idea Facebook 的最佳解答
- 關於dht11 在 vMaker 台灣自造者 Facebook 的精選貼文
- 關於dht11 在 UJ class Youtube 的精選貼文
- 關於dht11 在 UJ class Youtube 的最佳解答
- 關於dht11 在 UJ class Youtube 的最佳貼文
- 關於dht11 在 EduIntro/DHT11.ino at master - GitHub 的評價
- 關於dht11 在 台灣ESP32愛玩| 詢問各位大師我使用dht11溫濕度感測器讀出 ... 的評價
dht11 在 Audom Idea Facebook 的最佳解答
ตู้ไปรษณีย์แจ้งเตือนทาง Line สอนทำแบบระเอียดยิ๊บ..
---------------------
จากเมื่อสัปดาห์ที่แล้วผมได้โพสต์วีดีโอทดสอบการทำงานของตู้ไปรษณีย์แจ้งเตือนทางไลน์ไป ก็มีหลายๆคนสนใจผมจึงได้ทำคลิปขึ้นมา เพื่อพาทุกคนทำ ผมวังว่าคลิปนี้จะมีประโยชน์สำหรับใครหลายคนนะครับผม😊
-------------------------------------------------
คลิป https://www.youtube.com/watch?v=_cVsQ1oRuRA&t=108s
--------------------------------------------------
โค้ด
void Line_Notify1(String message1) ;
#include <ESP8266WiFi.h>
#include <DHT.h>
#define WIFI_SSID "ชื่อ wifi" /////////////*************แก้
#define WIFI_PASSWORD "รหัส wifi"////////**************แก้
#define LINE_TOKEN_PIR "line token"////***************แก้
#define PirPin D6
#define DHTPIN D7
#define DHTTYPE DHT11
DHT dht(DHTPIN, DHTTYPE);
String message1 = "ข้อความแจ้งเตือน";//****************แก้
bool beep_state = false;
bool send_state = false;
uint32_t ts, ts1, ts2;
void setup() {
Serial.begin(115200);
Serial.println();
pinMode(PirPin, INPUT);
pinMode(LED_BUILTIN, OUTPUT);
digitalWrite(LED_BUILTIN, HIGH);
dht.begin();
Serial.println("connecting");
WiFi.mode(WIFI_STA);
WiFi.begin(WIFI_SSID, WIFI_PASSWORD);
Serial.print("connecting");
while (WiFi.status() != WL_CONNECTED) {
Serial.print(".");
delay(500);
}
Serial.println();
Serial.print("connected: ");
Serial.println(WiFi.localIP());
delay(10000);
Serial.println("Pir Ready!!");
read_sensor();
ts = ts1 = ts2 = millis();
}
void loop() {
ts = millis();
if (WiFi.status() == WL_CONNECTED) {
digitalWrite(LED_BUILTIN, LOW);
} else {
digitalWrite(LED_BUILTIN, HIGH);
}
if ((ts - ts2 >= 60000) && (WiFi.status() == WL_CONNECTED)) {
read_sensor();
}
if ((ts - ts1 >= 5000) && (beep_state == true)) {
beep_state = false;
}
if ((digitalRead(PirPin) == HIGH) && (beep_state == false) && (WiFi.status() == WL_CONNECTED)) {
while (digitalRead(PirPin) == HIGH) delay(100);
Serial.println("Detect !");
Line_Notify1(message1);
beep_state = true;
}
delay(10);
}
void Line_Notify1(String message) {
WiFiClientSecure client;
if (!client.connect("notify-api.line.me", 443)) {
Serial.println("connection failed");
delay(2000);
return;
}
String req = "";
req += "POST /api/notify HTTP/1.1\r\n";
req += "Host: notify-api.line.me\r\n";
req += "Authorization: Bearer " + String(LINE_TOKEN_PIR) + "\r\n";
req += "Cache-Control: no-cache\r\n";
req += "User-Agent: ESP8266\r\n";
req += "Content-Type: application/x-www-form-urlencoded\r\n";
req += "Content-Length: " + String(String("message=" + message1).length()) + "\r\n";
req += "\r\n";
req += "message=" + message1;
// Serial.println(req);
client.print(req);
delay(20);
while (client.connected()) {
String line = client.readStringUntil('\n');
if (line == "\r") {
break;
}
}
}
void read_sensor() {
float h = dht.readHumidity();
float t = dht.readTemperature();
if (isnan(h) || isnan(t)) {
Serial.println("Failed to read from DHT sensor!");
return;
}
Serial.print("Temperature: ");
Serial.print(t);
Serial.println(" *C ");
}
----------------------------------------------------------
dht11 在 vMaker 台灣自造者 Facebook 的精選貼文
#活動預告
【 ploty 寫字機與 Arduino 程式設計 】
此次我們利用單晶片微控器-Arduino結合外部感測器,進行有趣的專案;同時亦配合mblock,一套以方塊組合式的視覺化程式語言,配合程式碼進行講解。課程的內容皆為配合最終完成一可控之機器手臂寫字機,期望此一雙管齊下的方式能夠激發學員想要創造出屬於自己的程式內容,並進而跨入程式設計的大門,領略程式設計之美。
報名網頁:https://goo.gl/forms/B9y1uF9MPg3018oc2
【課程目標】
1. 學習程式設計思考
2. 學習Arduino程式撰寫技巧
3. 學習如何控制周邊感測器
4. 互相合作、共同學習
【課程大綱】
第一週
1. 簡易微控器原理, Arduino & mblock 介紹
2. LED輸出(Digital & Analog Output)
3. 按鍵輸入(Digital & Analog Input)
第二週
1. 伺服馬達的控制 (PPM signal)
2. 溫濕度感測 (DHT11)
3. 時間模組 (DS1302)
第三週
1. 寫字機機械結構組裝
2. 寫字機電路接線
3. 寫字機馬達校正
第四週
1. 程式思考流程講解
2. 完整寫字機組裝及美化
【上課時間】
12/04、12/11、12/18、12/25(日)
早上 9:30~12:30
(每次3小時,共12個小時)
原著:http://www.thingiverse.com/thing:248009
dht11 在 UJ class Youtube 的精選貼文
#arduino #dht11 #rtc #ds3231#sdcard #excel #datamonitor #energyhouse #gopro
Intelligent Energy Saving House with Arduino Data Monitor (DHT11, DS3231, SD card and Excel)
Part.4 Data Logging with SD card and Excel
dht11 在 UJ class Youtube 的最佳解答
【2020全國科學探究競賽-這樣教我就懂】教師組第一名
Student Learning Outcomes Presentation
#IoT #NodeMCU #DHT11 #ThingSpeak #ESP8266 #L298N #DCmotor #WiFi #energyhouse
dht11 在 UJ class Youtube 的最佳貼文
#arduino #dht11 #rtc #ds3231#sdcard #excel #datamonitor #energyhouse
Intelligent Energy Saving House with Arduino Data Monitor (DHT11, DS3231, SD card and Excel)
Part.3 Arduino Data Logger with DHT11 and DS3231
dht11 在 台灣ESP32愛玩| 詢問各位大師我使用dht11溫濕度感測器讀出 ... 的推薦與評價
datasheet 應該有感測器校正跟初始化的說明,更新率不高可以取均值,這樣誤差應該不大。 不然也可用簡單的低通或移動平均讓數據smooth一點,如果要求高精度, ... ... <看更多>
dht11 在 EduIntro/DHT11.ino at master - GitHub 的推薦與評價
DHT11. This example reads a DHT11 sensor hooked up on pin D7. Reads both. temperature and humidity and sends it to the Serial port. ... <看更多>