필터 지우기
필터 지우기

Unrecognised function or variable 'avg_temperature' on Matlab

조회 수: 3 (최근 30일)
Mthunzi Booi
Mthunzi Booi 2020년 1월 13일
답변: Christopher Stapels 2020년 1월 14일
Hi Team
I need some help here quickly, i have this code below. What changed here is channel setting on my channel to be public, before it was private. Now i am getting unrecognised function or variable and cant seem to solve this issue, yet i am using the new feauture for sending or creating email using Matlab https://www.mathworks.com/help/thingspeak/sendalert.html
data = thingSpeakRead(929272, "NumMinutes", 100);
aveTemp = mean(data(:,3));
apiKey = 'O6P4N8AVZWKNGK5U';
alertURL = "https://api.thingspeak.com/alerts/send";
options = weboptions("HeaderFields",["ThingSpeak-Alerts-API-Key", apiKey]);
alertBody = sprintf("The temperature is %0.2fF.", aveTemp);
alertSubject = sprintf("! Temperature exceeded 60.0F!");
if avg_temperature > 60.0
webwrite(alertURL, "body", alertBody, "subject", alertSubject, options);
end

답변 (1개)

Christopher Stapels
Christopher Stapels 2020년 1월 14일
Change avg_temperature to aveTemp.

커뮤니티

더 많은 답변 보기:  ThingSpeak 커뮤니티

카테고리

Help CenterFile Exchange에서 ThingSpeak에 대해 자세히 알아보기

태그

제품


릴리스

R2019b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by