Post by Goborijung at 2020-07-17 11:01:37 | ID: 682
https://arduino.esp8266.com/stable/package_esp8266com_index.json
Post by Goborijung at 2019-12-08 05:35:05 | ID: 239
https://joo.gl/re99B
Post by Goborijung at 2020-08-23 11:34:07 | ID: 744
>> ตัวอย่างที่ 1
www.myarduino.net/article/163/สอนใช้งาน-nodemcu-esp8266-วัดอุณหภมูิและความชื้น-ด้วย-sensor-dht22-am2302
>> ตัวอย่างที่ 2
www.allnewstep.com/article/41/nodemcu-esp8266-esp8285-arduino-12-nodemcu-dht22-dht11-esp8266-ใช้-nodemcu-วัดความชื้นและอุณหภูมิ-dht11-dht22-esp8266
>> ตัวอย่างที่ 3
www.robotsiam.com/article/34/โปรเจค-nodemcu-v3-กับ-dht22-แสดงอุณหภูมิและความชื้น
>> ตัวอย่างที่ 4
https://lastminuteengineers.com/esp8266-dht11-dht22-web-server-tutorial/
>> ตัวอย่างที่ 5
https://ioxhop.gitbooks.io/fireboard-manual/content/fireboard-esp8266-online-monitor.html
>> ตัวอย่างที่ 6
https://www.teachmemicro.com/nodemcu-esp8266-dht22-interfacing/
>> ตัวอย่างที่ 7
https://escapequotes.net/esp8266-dht22-temperature-sensor/
>> ตัวอย่างที่ 8
www.myarduino.net/article/241/สอนใช้งาน-nodemcu-wifi-blynk-gauge-แสดงค่าอุณหภูมิและความชื้น-dht11-ผ่าน-wifi
>> ตัวอย่าง Code ที่ใช้งานจริง
#define BLYNK_PRINT Serial
#include <ESP8266WiFi.h>
#include <BlynkSimpleEsp8266.h>
#include "DHT.h"
DHT dht;
// You should get Auth Token in the Blynk App.
// Go to the Project Settings (nut icon).
char auth[] = "U8QpghIdNBy0g9FcoYrf0VLSatNQypPL";
// Your WiFi credentials.
// Set password to "" for open networks.
char ssid[] = "Goborijung-PC";
char pass[] = "444555666";
void setup()
{
// Debug console
Serial.begin(9600);
Blynk.begin(auth, ssid, pass);
// You can also specify server:
//Blynk.begin(auth, ssid, pass, "blynk-cloud.com", 80);
//Blynk.begin(auth, ssid, pass, IPAddress(192,168,1,100), 8080);
Serial.println();
Serial.println("Status Humidity (%) Temperature (C) (F)");
dht.setup(2); // data pin 2
}
void loop()
{
delay(dht.getMinimumSamplingPeriod());
float humidity = dht.getHumidity(); // ดึงค่าความชื้น
float temperature = dht.getTemperature(); // ดึงค่าอุณหภูมิ
Serial.print(dht.getStatusString());
Serial.print(" ");
Serial.print(humidity, 1);
Serial.print(" ");
Serial.print(temperature, 1);
Serial.print(" ");
Serial.println(dht.toFahrenheit(temperature), 1);
Blynk.run();
delay(100);
Blynk.virtualWrite(V0, temperature);
Blynk.virtualWrite(V1, humidity);
}
Post by Goborijung at 2020-08-24 09:33:11 | ID: 657
https://www.arduinoall.net/arduino-tutor/ Username : demo Password : demo
Post by Goborijung at 2020-07-18 10:53:05 | ID: 685
https://bit.ly/3fH508e
Post by Goborijung at 2020-08-23 11:33:40 | ID: 746
>> ตัวอย่างที่ 1 www.thaidbselec.com/article/37/การใช้งาน-nodemcu-ร่วมกับ-blynk-เพื่อ-on-off-relay-ผ่านแอฟมือถือ
Post by Goborijung at 2020-08-23 11:42:23 | ID: 750
https://www.dropbox.com/s/4p511o1ii3r21ar/Blynk.rar?dl=0
Post by Goborijung at 2020-08-23 11:35:06 | ID: 749
http://www.mediafire.com/file/6qh8q1g0kmokl4g/DHT11.rar/file
Post by Goborijung at 2020-08-23 11:34:41 | ID: 748
http://www.mediafire.com/file/3szq0oevu0dt5hg/TridentTD_LineNotify-master.zip/file
Post by Goborijung at 2020-07-22 11:10:24 | ID: 208
https://joo.gl/BwcwP