Historial en los charts
3 views (last 30 days)
Show older comments
Este grafico esta en semanal, pero solo veo 4 dias de historial. No tengo forma de hacer "zoom out", si lo veo en mensual y diario me pasa lo mismo, alguna idea de como puedo ver mas hisotiral?
0 Comments
Answers (1)
Christopher Stapels
on 6 Sep 2024
It is not clear what app you are using to view your ThingSpeak data, but I do not think the app you show it is specifically supported by MathWorks.
I suspect you are trying to view more than 8000 points at a time, which is not possible in a single read. To view more than that, you can create a derived channel that stores data averaged over time and then view the charts for the averaged data wich will have fewer poins and thus allow a longer view. You can use a time control to priodically read the main channel and copy averaged data to the derived channel.
Also you can create custom MATLAB visualization where you read muliple times and then combine the data to plot a longer view. If you do this, please make sure to put a small delay in between reads in your code to give the server some time. (i.e. pause(0.2);)
Here is the translation I used to answer the question.
This chart is in weekly format, but I only see 4 days of history. I have no way to "zoom out"; if I see it in monthly and daily formats, the same thing happens to me. Any idea how I can see more history?
0 Comments
Communities
More Answers in the ThingSpeak Community
See Also
Categories
Find more on Configure Accounts and Channels in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!