Statistics
All
Content Feed
답변 있음
How do I set time for my channel?
When in ThingSpeak (not here in the community), click your avatar in the upper right, and select "My Profile". There is a setti...
How do I set time for my channel?
When in ThingSpeak (not here in the community), click your avatar in the upper right, and select "My Profile". There is a setti...
약 17시간 전 | 0
| 수락됨
답변 있음
Data isn't showing up in the channel
Can you try this code on you pi for the REST API? Do you get a value in your channel? import requests import threading ...
Data isn't showing up in the channel
Can you try this code on you pi for the REST API? Do you get a value in your channel? import requests import threading ...
3일 전 | 0
답변 있음
Help with Matlab Analysis Thingspeak script
Sorry to leave you hanging for so long. I would just get the last value (why do you need the last 3 values? % my suggestion l...
Help with Matlab Analysis Thingspeak script
Sorry to leave you hanging for so long. I would just get the last value (why do you need the last 3 values? % my suggestion l...
10일 전 | 1
| 수락됨
답변 있음
my project graph is not showing in my channel
We reccomend using the ThingSpeak library for arduino and ESP. It will take care of a lot of problems for you. First, however ...
my project graph is not showing in my channel
We reccomend using the ThingSpeak library for arduino and ESP. It will take care of a lot of problems for you. First, however ...
10일 전 | 0
답변 있음
Sonoff TH16 - Collect data
Yes, you can use the developer API mode in sonoff to read data and send it to ThingSpeak. You will need some program that can ac...
Sonoff TH16 - Collect data
Yes, you can use the developer API mode in sonoff to read data and send it to ThingSpeak. You will need some program that can ac...
10일 전 | 1
답변 있음
Hi, may i know. how to set the update value to thingspeak server from every 3min to every 12hour ? from my iot devices.
The data comes from the device, so you can chage the update frequency on the device, unless the data is coming from some other w...
Hi, may i know. how to set the update value to thingspeak server from every 3min to every 12hour ? from my iot devices.
The data comes from the device, so you can chage the update frequency on the device, unless the data is coming from some other w...
10일 전 | 0
답변 있음
Making MQTT data visible in ThingSpeak
If the data is not ingested into your channel, there is not a file to see what data was sent. If the data is ingested into your...
Making MQTT data visible in ThingSpeak
If the data is not ingested into your channel, there is not a file to see what data was sent. If the data is ingested into your...
13일 전 | 0
답변 있음
unable to sign on to thingspeak
Can you try a fresh browser (or perhaps incognito) or a different computer? You may also have to clear cookies associated with ...
unable to sign on to thingspeak
Can you try a fresh browser (or perhaps incognito) or a different computer? You may also have to clear cookies associated with ...
23일 전 | 0
답변 있음
j'ai un probleme de surveillance mes grandeurs sur thingspeak
There are very many examples on the wild web search sim800L and ThingSpeak, im sorry to say we do not yet have such an example i...
j'ai un probleme de surveillance mes grandeurs sur thingspeak
There are very many examples on the wild web search sim800L and ThingSpeak, im sorry to say we do not yet have such an example i...
약 1달 전 | 0
답변 있음
Recover from backup.
To clarify, the OP was asking about historical data in ThingSpeak. There is no backup of the data, but you can read the data fo...
Recover from backup.
To clarify, the OP was asking about historical data in ThingSpeak. There is no backup of the data, but you can read the data fo...
약 1달 전 | 0
답변 있음
How can I display a label on the x-axis without removing the timestamp for ThingSpeak?
It appears that there is no timestamp on the x axis for the plot you shared. There appears to be a legend at the bottom that alm...
How can I display a label on the x-axis without removing the timestamp for ThingSpeak?
It appears that there is no timestamp on the x axis for the plot you shared. There appears to be a legend at the bottom that alm...
약 1달 전 | 0
| 수락됨
답변 있음
exportar datos en CSV
You can use the web interface to export a CSV file of all your data on the import export tab of your channel view. You can also...
exportar datos en CSV
You can use the web interface to export a CSV file of all your data on the import export tab of your channel view. You can also...
약 2달 전 | 0
문제를 풀었습니다
Find nth maximum
Find nth maximum in a vector of integer numbers. Return NaN if no such number exists. x = [2 6 4 9 -10 3 1 5 -10]; So ...
약 2달 전
답변 있음
Reading large amount of entries from a channel starting with some date
I recommend choosing your daterange to read below the limit (say 5000 entries) then you can have a well determined output each t...
Reading large amount of entries from a channel starting with some date
I recommend choosing your daterange to read below the limit (say 5000 entries) then you can have a well determined output each t...
2달 전 | 0
답변 있음
Is MQTT functionality implemented for 3rd party applications?
Theindustrial communication toolbox includes MQTT interfaces. ThingSpeak maintains an MQTT broker that you can interact with to...
Is MQTT functionality implemented for 3rd party applications?
Theindustrial communication toolbox includes MQTT interfaces. ThingSpeak maintains an MQTT broker that you can interact with to...
2달 전 | 0
| 수락됨
답변 있음
Clearing channel data not working
The database schedules the delete job as a background task, occasionally you might get behind a flood of other requests. Still,...
Clearing channel data not working
The database schedules the delete job as a background task, occasionally you might get behind a flood of other requests. Still,...
2달 전 | 0
답변 있음
How to add a widget for talkback in the my channel section along with incoming sensor data visualizations?
You can use the plugins app to add javascript that will make a button that sets a channel value. You will be able to use the p...
How to add a widget for talkback in the my channel section along with incoming sensor data visualizations?
You can use the plugins app to add javascript that will make a button that sets a channel value. You will be able to use the p...
2달 전 | 0
답변 있음
Thingspeak MQTT connectivity with LoRa
All the MQTT settings are here at the MQTT API page in the help. You will need an MQTT device and a channel, you can see how to...
Thingspeak MQTT connectivity with LoRa
All the MQTT settings are here at the MQTT API page in the help. You will need an MQTT device and a channel, you can see how to...
2달 전 | 0
문제를 풀었습니다
Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...
2달 전
답변 있음
How to use thingspeak in online simulator of arduino like tinkercad and wokwi?
This https://www.mathworks.com/help/thingspeak/prototyping-with-sonar-proximity-sensor.htmlexample of a proximity monitor shows ...
How to use thingspeak in online simulator of arduino like tinkercad and wokwi?
This https://www.mathworks.com/help/thingspeak/prototyping-with-sonar-proximity-sensor.htmlexample of a proximity monitor shows ...
2달 전 | 0
답변 있음
Cannot create a new channel.
We worked with Neil and got him going again. He had an expired commercial trial. They can be extended or restarted but you nee...
Cannot create a new channel.
We worked with Neil and got him going again. He had an expired commercial trial. They can be extended or restarted but you nee...
3달 전 | 0
답변 있음
Thingspeak unit - 24 messages every same minute
If each device has its own channel, you can upload all messages in the same second. If you have a home or student unit, you are...
Thingspeak unit - 24 messages every same minute
If each device has its own channel, you can upload all messages in the same second. If you have a home or student unit, you are...
3달 전 | 0
답변 있음
How to write to thingspeak channel from thinghttp?
If your ThingHTTP is interacting with an external website, you can rewrite it in MATLAB analysis using webread or webwrite. The...
How to write to thingspeak channel from thinghttp?
If your ThingHTTP is interacting with an external website, you can rewrite it in MATLAB analysis using webread or webwrite. The...
3달 전 | 0
| 수락됨
답변 있음
Access to Image Channels with academic licence
I suspect you mean that you have a campus wide license or academic MATLAB license. ThingSpeak paid licenses are in addition to ...
Access to Image Channels with academic licence
I suspect you mean that you have a campus wide license or academic MATLAB license. ThingSpeak paid licenses are in addition to ...
3달 전 | 1
답변 있음
Is Arduino Ethernet Shield R3 supported?
Can you use the thingSpeakRead and thingSpeakWrite blocks?
Is Arduino Ethernet Shield R3 supported?
Can you use the thingSpeakRead and thingSpeakWrite blocks?
3달 전 | 0
답변 있음
Is multifield update counted as one message or multiple?
See the licensing FAQ, question 4. And the answer to your question is one.
Is multifield update counted as one message or multiple?
See the licensing FAQ, question 4. And the answer to your question is one.
3달 전 | 0
답변 있음
How can i add Econometrics Toolbox to thingspeak
You will need to use the same MathWorks account for your ThingSpeak work as for the desktop. ThingSpeak will take care of looki...
How can i add Econometrics Toolbox to thingspeak
You will need to use the same MathWorks account for your ThingSpeak work as for the desktop. ThingSpeak will take care of looki...
3달 전 | 0
답변 있음
Thingspeak widget customization when posting the widget onto an external website using iframe
You cannot use the ThingSpeak gauge without the iframe. You may be able to embed a google gauge on your website direcly, and re...
Thingspeak widget customization when posting the widget onto an external website using iframe
You cannot use the ThingSpeak gauge without the iframe. You may be able to embed a google gauge on your website direcly, and re...
3달 전 | 0
문제를 풀었습니다
Find the longest sequence of 1's in a binary sequence.
Given a string such as s = '011110010000000100010111' find the length of the longest string of consecutive 1's. In this examp...
3달 전