irproject on Send data from ThingSpeak to ESP8266
Hi I succeeded send data from a sensor (by Arduino Uno + esp8266) to my ThingSpeak channel. Now I want to send back data from my channel to Arduino Uno. Help? tnx
View Articleloli72 on Need help posting data using RN171 wifi shield and wifly library
Hello, could you please post your entire code. At least the code to connect this wifi schield to Thingspeak as a client. I manage to connect whit a ethernet schield but I'm lost with this one.
View ArticleICar on Upload two values to ThingSpeak with a Arduino GSM Module?
Halo everyone, I want to upload 2 values to ThingSpeak in feld1 and feld2. I use an Arduino uno and a GSM module for that. I have already work out some code that work but not as good as I want. I am...
View Articlerw950431 on Upload two values to ThingSpeak with a Arduino GSM Module?
Does startGSM() claim to succeed? - Do you get the "connected" message printed out.. Perhaps you can try calling Thingspeak.begin() only after you connect to GSM rather than before? If that doesnt...
View ArticleICar on Upload two values to ThingSpeak with a Arduino GSM Module?
Thang you for your tip. Yes the startGSM() works fine and I get the Massage connected. I try your idea to change the position of Thingspeak.begin() after the startGSM() but the code still stops working...
View Articlepiajola on Upload two values to ThingSpeak with a Arduino GSM Module?
Hi ICar, You say int Wert1 = 0; //Startwert auf 0 gesetzt google helped me saying you say start with value=0 but you never made it greater than 0 and you check if (!client.connected() &&...
View ArticleICar on Upload two values to ThingSpeak with a Arduino GSM Module?
Hi piajola, You are absolutely right with the “int Wert1=0”. That was a volatile mistake from me. I am still working on the problem to upload two variables to ThingSpeak. The code example you give me...
View Articlepiajola on Upload two values to ThingSpeak with a Arduino GSM Module?
Hi ICar, str is "string" the idea is concatenate one string from 2 strings plus 2 numbers. (convert the number to string) It depends in the "type" of number int, float, etc. My particular case is I...
View ArticleICar on Upload two values to ThingSpeak with a Arduino GSM Module?
Hi piajola, Thank you very much for your help. It works now! Great idea to put both variables in one string. The solution is: String analogValue = String(Wert1, DEC); String analogValue2 =...
View Articlepiajola on Upload two values to ThingSpeak with a Arduino GSM Module?
Hi ICar, Glad to know your status ... Welcome to the exclusive club of Iot(ers) I hope for a long membership And help someone you know you can help
View Articlesalim on 1440 Averaging Inaccuracy
I am new to the ThingSpeak platform and I am trying to display the 1440 average of my data I am sending from an Arduino Uno. I am sending data from 5 different detectors to be plotted into 5 different...
View ArticleHans on 1440 Averaging Inaccuracy
You are correct. The average is using null's and lowering the expected average. If you have two devices, you might want to update two different ThingSpeak channels. If that is not possible, then MATLAB...
View ArticleTonibco6 on Dragino-KPN-ThingSpeak
Hi all, I am actually developing an IOT project based on LoRa module. To be specific, I am using Dragino device to send temperature-Humidity data from sensors. The point is that I am sensing this data...
View Articledtecres on Arduino Uno R3+W5100+LM35, Temperature not display in Thingspeak...
Dear All, I'm trying to use the W5100 Ethernet Shield with Arduino Uno R3 to send the temperature read from LM35 to Thingspeak. Unfortunately, nothing happened after an hour (interval is 5 minutes). I...
View Articlerushanarshad on Dispalying Sum in Thingspeak Channel
Hello guys, I must appreciate Thingspeak is a very good platform. However, I am stuck at one thing and need help from the community. I am using hall-effect sensor to send liquid data from arduino to...
View Articlerushanarshad on Cant send Unsigned long values from arduino to ThingSpeak
Hello guys, I am trying to send my liquid sensor data to ThingSpeak. But, my total liquid variable is unsigned long. The following error comes up in compiling: no matching function for call to...
View Articlecstapels on Arduino Uno R3+W5100+LM35, Temperature not display in Thingspeak...
What response are you getting from the server? try int response =thingSpeak.writeFireld(...; serial.println("Response from server "+ String(response)); and see what the response says.
View Articledtecres on Arduino Uno R3+W5100+LM35, Temperature not display in Thingspeak...
Hi Cstapels, I get the response as below: Response from server -302 Thanks.
View Articlecstapels on Arduino Uno R3+W5100+LM35, Temperature not display in Thingspeak...
302 is a redirection, I don't thing thingSpeak would provide that to you directly. A wild guess is that your network is redirecting the request away from ThingSpeak. Are you able to update the...
View ArticleTonibco6 on Dragino-KPN-ThingSpeak
I have finally managed to get the right code to send my dht_11 data to KPN network from LoRa (Dragino) node. However, my next step consists on transmit this data to ThingSpeak platform throughout KPN...
View Article