Can someone help me make a simple coding?

5 ビュー (過去 30 日間)
Jose Arias
Jose Arias 2020 年 12 月 1 日
回答済み: Image Analyst 2022 年 6 月 11 日
I need help making a code that sends you a message “you got mail” after weight is applied to a pressure plate for more than 20 seconds. I know it’s a fairly simple code but I suck at coding and my professor didn’t help much this semester as she’s the worst professor I’ve ever had and the class has reported her to the dean.
  1 件のコメント
Mathieu NOE
Mathieu NOE 2020 年 12 月 2 日
hello
so , have you already starting to write a code ?

サインインしてコメントする。

回答 (1 件)

Image Analyst
Image Analyst 2022 年 6 月 11 日
Try this
startTime = tic
maxTime = 300; % seconds = 5 minutes
underPressure = false;
while toc(startTime) < maxTime
pressure = GetPresure(); % Somehow ask your device for the the current pressure.
if pressure > someThreshold
underPressure = true;
elapsedSeconds = toc(startTime);
if elapsedSeconds >= 20
uiwait(helpdlg("You've got mail!"))
break;
end
else
underPressure = false;
startTime = tic; % Reset clock.
end
end

カテゴリ

Help Center および File ExchangeProgramming についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by