ThingSpeak Channel Table Error
古いコメントを表示
Hi everyone,
I am having issues with my ThingSpeak Channel only displaying certain portion of my table. When I run the visualization code on its own, I get the full table as shown here:

However, when I refresh the page to check the ThingSpeak channel, only the last row of the table is displayed.

I have tried to adjust the Display Settings on the Visualization side, but I am still getting the same issue. I have attached my code to the bottom of this post for any clarity.

Any help would be appreciated!
5 件のコメント
Frederic FERRIEU
2024 年 4 月 3 日
same troubles is there an issue? Table format does not seem to work furthermore matlab has seen the transmission problem explaining whts happening but no solves it..
Christopher Stapels
2024 年 4 月 3 日
@Frederic FERRIEU Im sorry, Im not sure what your issue is. Can you start a new thread and describe your problem?
Frederic FERRIEU
2024 年 4 月 5 日
hello i have a lot of trouble with this
time_space = 2000;
[data, timestamps, chInfo] = thingSpeakRead(readChannelID, 'Fields', [thickFieldID, co2FieldID], 'NumPoints', time_space);
and then need to extract the Nan data with e.g.
% Read Humidity Data humiditydata = data(:, 1); humiditydata = humiditydata(~isnan(humiditydata)); ilen = size(humiditydata);
with two array co2data humidity ect... size are different what is the max value?
Frederic FERRIEU
2024 年 4 月 5 日
%'DateRange',[startDate endDate]
myData= thingSpeakRead( readChannelID,...
'Fields', [3, 1],'DateRange',[startDate endDate]);
% Read Data other reading
disp(myData)
myData = thingSpeakRead( readChannelID,...
'Fields', [6, 1],'NumPoints',[12]);
disp(myData)
TString = evalc('disp(myData)');
TString = strrep(TString,'<strong>','\bf');
TString = strrep(TString,'</strong>','\rm');
TString = strrep(TString,'_','\_');
FixedWidth = get(0,'FixedWidthFontName');
% Output the table using the annotation command.
annotation(gcf,'Textbox','String',TString, ...
'Interpreter','Tex',...
'FontName',FixedWidth,...
'Units','Normalized',...
'Position',[0 0 1.5 1],'FontSize',7);
NaN NaN
NaN NaN
NaN NaN
NaN NaN
NaN 268.6447
Christopher Stapels
2024 年 4 月 5 日
@frederic can you make a new post with your issue? It seems different than the OP.
採用された回答
その他の回答 (0 件)
コミュニティ
その他の回答 ThingSpeak コミュニティ
カテゴリ
ヘルプ センター および File Exchange で Visualize Data についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
