My Setup:
ESP-12 E, DHT-22, LD1117V33, 3,7V Li-Po 3000mAh
Sketch:
#include <DHT.h>
#include <ESP8266WiFi.h>
// replace with your channel’s thingspeak API key,
String apiKey = "******************************";
const char* ssid = "**********";
const char* password = "*********************";
const char* server = "api.thingspeak.com";
#define DHTPIN 12 // what pin we’re connected to
DHT dht(DHTPIN, DHT22, 15);
WiFiClient client;
void setup() {
Serial.begin(115200);
delay(10);
dht.begin();
WiFi.mode(WIFI_STA); // added 300716
WiFi.begin(ssid, password);
Serial.println();
Serial.println();
Serial.print("Connecting to ");
Serial.println(ssid);
WiFi.begin(ssid, password);
while (WiFi.status() != WL_CONNECTED) {
delay(500);
Serial.print(".");
}
Serial.println("");
Serial.println("WiFi connected");
float h = dht.readHumidity();
float t = dht.readTemperature();
if (isnan(h) || isnan(t)) {
Serial.println("Failed to read from DHT sensor!");
return;
}
if (client.connect(server, 80)) { // "184.106.153.149" or api.thingspeak.com
String postStr = apiKey;
postStr += "&field3=";
postStr += String(t);
postStr += "&field4=";
postStr += String(h);
postStr += "\r\n\r\n";
client.print("POST /update HTTP/1.1\n");
client.print("Host: api.thingspeak.com\n");
client.print("Connection: close\n");
client.print("X-THINGSPEAKAPIKEY: " + apiKey + "\n");
client.print("Content-Type: application/x-www-form-urlencoded\n");
client.print("Content-Length: ");
client.print(postStr.length());
client.print("\n\n");
client.print(postStr);
Serial.print("Temperature: ");
Serial.print(t);
Serial.print(" degrees Celcius Humidity: ");
Serial.print(h);
Serial.println("% send to Thingspeak");
}
client.stop();
Serial.println("Waiting…");
delay(500);
WiFi.disconnect();
// thingspeak needs minimum 15 sec delay between updates
//wifi_set_sleep_type(LIGHT_SLEEP_T);
//delay(900000);
Serial.println("ESP8266 in sleep mode");
delay(500);
ESP.deepSleep(60 * 15 * 1000000); // 15 Minuten
delay(1000);
}
void loop() {
}
Problem: Still consumes constantly 80mA and i have NO idea why.
Any help? Thanks!
Jerry
PS: If anyone wonders...this is a kind of "follow up" of this thread. Still trying to supply my ESP/DHT for weeks/month with battery.