Questions tagged [thingspeak]

ThingSpeak is an open source Internet of Things (IoT) application and API to store and retrieve data from things using the HTTP protocol over the Internet or via a Local Area Network. ThingSpeak enables the creation of sensor logging applications, location tracking applications, and a social network of things with status updates.

ThingSpeak was originally launched by ioBridge in 2010 as a service in support of IoT applications.

ThingSpeak has integrated support from the numerical computing software MATLAB from MathWorks. Allowing ThingSpeak users to analyze and visualize uploaded data using Matlab without requiring the purchase of a Matlab license from Mathworks.

ThingSpeak has a close relationship with Mathworks, Inc. In fact, all of the ThingSpeak documentation is incorporated into the Mathworks' Matlab documentation site and even enabling registered Mathworks user accounts as valid login credentials on the ThingSpeak website. The terms of service and privacy policy of ThingSpeak.com are between the agreeing user and Mathworks, Inc.

14 questions
2
votes
2 answers

Why does my Arduino stop uploading to the Thingspeak server after several hours?

I'm using a Maduino Zero 4G SIM7600 device to upload data from 28 sensors to a ThingSpeak IoT server. It works well for a few hours, then stops uploading the data. Sometimes it starts again after an inconsistent amount of time (an hour or two),…
Zurn
  • 21
  • 1
2
votes
0 answers

Can't push data to ThingSpeak - Status 400 Bad Request

I'm trying to push some data to ThingSpeak using the EtherCard library with the ENC28J60 ethernet module. At the moment I'm using the exemple code that comes with the library just for tests. But no matter what I do, always receive the same…
1
vote
0 answers

Secure upload to ThingSpeak with Arduino MKR GSM 1400 using GSMSSLCLient

I have an issue when trying to upload sensor data to ThingSpeak using the GSMSSLClient with the Arduino MKR GSM 1400 over MQTT. Each time I attempt to establish an MQTT connection, the state is always -2. Below is the relevant sections of my code to…
1
vote
1 answer

How to increase the frequency of data transmission of SIM900A GSM Module connected to Arduino Uno?

I have a SIM900A GSM Module hooked onto an Arduino Uno board. The Arduino is connected to a MPU6050 Accelerometer which is constantly monitoring data at 1 second interval. I am trying to transmit the gathered data to ThingSpeak server. I have…
1
vote
2 answers

Temperature anomaly on BS18B20 + NodeMCU on Tingspeak

Temperature drops occasionally from 59+C to -13C or to other random values. Used sketch and info from this site: http://internetofthinking.blogspot.com/2016/02/upload-ds18b20-temperature-sensor-data.html NodeMCU powered by phone charger 5v 1a via…
user60654
  • 11
  • 1
1
vote
0 answers

HTTP request is not being executed in Arduino script for sending sensor data to Thingspeak cloud

I am trying to send the data from DHT sensor (temperature and humidity on 2 channels of Thingspeak cloud server) and firstly display them on Thingspeak cloud. Afterwards I will need to get those data from the cloud and use them with Python in order…
0
votes
1 answer

Play audio on an ESP32 or an Arduino

I am in the process of making a talking robot and I have linked my ESP32 to a Google text-to-speech service. The service returns me a base64 8-bit audio response. I need to play this audio and I can't figure out how to do it. I know that an audio…
0
votes
2 answers

Why am I getting "expected primary-expression before '.' token"?

I know this is a common question but the truth is every code is different. Sometimes it's hard to apply the concept to your code, it does not work. So please help me. What is wrong with this code? I got it from GitHub. I'm trying to compile it first…
Agent 96
  • 11
  • 1
  • 2
0
votes
1 answer

Can't extract basic data using ThingspeakHTTP

I don't know anything about HTML, but I want to extract the % probability of the Northern lights being visible from this webpage http://aurorawatch.ca/. I entered this into the URL field, and selected HTML version 1. When I inspect the text element…
0
votes
1 answer

Unable to parse my JSON Data in Arduino IDE

i want to get my thingSpeak channel data into arduino by performing GET request every things works fine.Further i used Arduinojson lib to parse the JSON but i am getting failed every time when i try to parse it.I used arduinojson assistant to…
Wisal Muhammad
  • 15
  • 1
  • 3
  • 7
0
votes
1 answer

Reading data from ThingSpeak via Arduino Uno+ESP8266

I am integrating thingspeak and arduino plus Esp8266 mean making a simple project which contain my android app to update the thingspeak channel and then want to read the data of that channel via arduino uno. the android parts works fine but at the…
Wisal Muhammad
  • 15
  • 1
  • 3
  • 7
0
votes
2 answers

Unable to upload the data on thingspeak using uno and esp8266

I am able to connect to thingspeak but now able to upload the data. here are my set of commands: AT+CIPMUX=0 OK AT+CIPSTART="TCP","184.106.153.149", 80 OK Linked AT+CIPSTATUS STATUS:3 +CIPSTATUS:0,"TCP","184.106.153.149",80,0 OK AT+CIPSEND=45 …
Prasad
  • 101
  • 1
  • 3
-1
votes
1 answer

Serial monitor shows repeated CIPSEND and CIPCLOSE

I'm trying to build a heart rate monitor using ESP-01. The code compiles and uploads well but once uploaded, in the serial monitor it shows the following. It keeps repeat CIPSEND and CIPCLOSE over and over. What could cause this? Could it be faulty…
T.L.D
  • 1
-1
votes
1 answer

Data is not sending to Thingspeak using SIM900 with an interrupt in the code

I'm currently working in a weather station with online recording on Thingspeak. When I send a set of parameters (T, Pressure, Humidity, light), I don't have any problem with sending data. But when I add to the code the rain parameter, the code…