squix78 / esp8266-dht-thingspeak-logger

Logs temperature and humidity to Thingspeak
MIT License
20 stars 12 forks source link

connecting to api.thingspeak.com connection failed #2

Open ChipStewart1 opened 6 years ago

ChipStewart1 commented 6 years ago

Having just moved, I stumbled across a Wemos D1 with a DHT11, and upon which I had flashed esp8266-dht-thingspeak-logger a year or two ago. I fired it up last night and it logged data until early this morning.

Now, for no apparent reason, it has stopped working, even though I can post the same url through a browser. Reflashing didn't seem to help. The serial monitor shows:

.... WiFi connected IP address: 192.168.0.168 connecting to api.thingspeak.com connection failed connecting to api.thingspeak.com connection failed connecting to api.thingspeak.com connection failed connecting to api.thingspeak.com connection failed [which runs indefinitely]

I'll post the code below, but it is pretty much stock. I tried changing my api write key, but it didn't make any difference. Any ideas?

/**The MIT License (MIT)

Copyright (c) 2015 by Daniel Eichhorn

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

See more at http://blog.squix.ch */

include

include "DHT.h"

/***

const char ssid = "[SSID]"; const char password = "[password]";

const char* host = "api.thingspeak.com";

const char* THINGSPEAK_API_KEY = "[API Write Key]";

// DHT Settings

define DHTPIN D4 // what digital pin we're connected to. If you are not using NodeMCU change D6 to real pin

// Uncomment whatever type you're using!

define DHTTYPE DHT11 // DHT 11

//#define DHTTYPE DHT22 // DHT 22 (AM2302), AM2321 //#define DHTTYPE DHT21 // DHT 21 (AM2301)

const boolean IS_METRIC = true;

// Update every 600 seconds = 10 minutes. Min with Thingspeak is ~20 seconds const int UPDATE_INTERVAL_SECONDS = 300;

/***

// Initialize the temperature/ humidity sensor DHT dht(DHTPIN, DHTTYPE);

void setup() { Serial.begin(115200); delay(10);

// We start by connecting to a WiFi network

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");
Serial.println("IP address: "); Serial.println(WiFi.localIP()); }

void loop() {
Serial.print("connecting to "); Serial.println(host);

// Use WiFiClient class to create TCP connections
WiFiClient client;
const int httpPort = 80;
if (!client.connect(host, httpPort)) {
  Serial.println("connection failed");
  return;
}

// read values from the sensor
float humidity = dht.readHumidity();
float temperature = dht.readTemperature(!IS_METRIC);

// We now create a URI for the request
String url = "/update?api_key=";
url += THINGSPEAK_API_KEY;
url += "&field1=";
url += String(temperature);
url += "&field2=";
url += String(humidity);

Serial.print("Requesting URL: ");
Serial.println(url);

// This will send the request to the server
client.print(String("GET ") + url + " HTTP/1.1\r\n" +
             "Host: " + host + "\r\n" + 
             "Connection: close\r\n\r\n");
delay(10);
while(!client.available()){
  delay(100);
  Serial.print(".");
}
// Read all the lines of the reply from server and print them to Serial
while(client.available()){
  String line = client.readStringUntil('\r');
  Serial.print(line);
}

Serial.println();
Serial.println("closing connection");

// Go back to sleep. If your sensor is battery powered you might // want to use deep sleep here delay(1000 * UPDATE_INTERVAL_SECONDS); }

cuca94 commented 6 years ago

hey, i had the same issue. the wemos seemed to not flash new software and stuck somewhere. i fixed it by changing the build options once (i changed the flash size and the IwIP Variant) to force a completely new build. now its working as usual.