New Search

If you are not happy with the results below please do another search

1 search result for:

1

nodmcu V3 (Lolin) DHT11 with DeepSleep

การหลับ Deepsleep จะเป็นหน่วย microsecond #include <ESP8266WiFi.h> #include “DHT.h” //deep sleep  wire GPIO16 (D0) to RST Pin #define DHTPIN D4 // ขา Out ของ Sensor ต่อเข้าขา D4 ของ Esp8266 #define DHTTYPE DHT11 // DHT 22 (AM2302), AM2321 DHT dht(DHTPIN, DHTTYPE); void setup() { dht.begin(); Serial.begin(9600); Serial.println(“Humidity and temperature\n\n”); delay(700); } void loop() { float h = […]