Historial en los charts
조회 수: 2 (최근 30일)
이전 댓글 표시
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
답변 (1개)
Christopher Stapels
2024년 9월 6일
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
커뮤니티
더 많은 답변 보기: ThingSpeak 커뮤니티
참고 항목
카테고리
Help Center 및 File Exchange에서 Visualize Data에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!