How would you create a script that is executed more than once?

3 views (last 30 days)
My question is how would I go about adding to my script so that there are multiple executions or checks? My script will currently only carry out either the first part of the script, or the second part of the script based on distance taken from a sensor (It will also only take this measurement once), It will then stop.
if any(distance > 0.1) % If measured distance is greater than 0.1m, then..,
writeDigitalPin(a,'D10',1); % power digital pin D10,
else % else, execute the following for loop,
for PauseReverse = 0:0.5 % have 1 cycle only of for loop,
pause(5); % pause for 5 seconds before next step,
writeDigitalPin(a,'D11',1); % power on pin D11,
pause(10); % Keep power on for 10 seconds,
writeDigitalPin(a,'D11',0); %power off pin D11,
end % end the for loop,
end % end the if condition.
Prefferably, the initial if condition would be executed, followed by the script executing itself repeatedly until the measured distance is less than 0.1, where it would then carry out the final for loop and stop the script.
Im sorry if that didn't make much sense and I would be grateful for any responses, thank you.
  1 Comment
Anthony Coelho
Anthony Coelho on 30 Apr 2021
David fletcher - "You will also need to update the distance within the while loop, otherwise the loop would never end (if it was initially entered). What is the value of distance returned from the sensor (your use of any(distance....) suggests that it's a vector rather than a scaler value?"
I did not update the distance measurement within the while loop, just like David mentioned, after rewriting it, it now works as intended (I should have also initially provided more information) - thanks for the help!

Sign in to comment.

Accepted Answer

David Fletcher
David Fletcher on 30 Apr 2021
while any(distance > 0.1) % If measured distance is greater than 0.1m, then..,
writeDigitalPin(a,'D10',1); % power digital pin D10,
end % else, execute the following for loop,
for PauseReverse = 0:0.5 % have 1 cycle only of for loop,
pause(5); % pause for 5 seconds before next step,
writeDigitalPin(a,'D11',1); % power on pin D11,
pause(10); % Keep power on for 10 seconds,
writeDigitalPin(a,'D11',0); %power off pin D11,
end % end the for loop,
  4 Comments
Anthony Coelho
Anthony Coelho on 30 Apr 2021
Sorry, this was where distance is updated, its a measurement taken from a ultrasonic sensor connected to a arduino;
clear;
a = arduino('COM3', 'Uno', 'Libraries', 'Ultrasonic'); % create arduino object and include ultrasonic library,
ultrasonicObj = ultrasonic(a,'D6','D5') % TriggerPin = D6, EchoPin = D5
distance = readDistance(ultrasonicObj) % measure distance from ultrasonic sensor to object and return the measured distance in meters,
% Digital pin 10 rotates the motor anti-clockwise,
% Digital pin 11 rotates the motor clockwise,
if any(distance > 0.1) % If measured distance is greater than 0.1m, then..,
writeDigitalPin(a,'D10',1); % power digital pin D10,
else % else, execute the following for loop,
for PauseReverse = 0:0.5 % have 1 cycle only of for loop,
pause(5); % pause for 5 seconds before next step,
writeDigitalPin(a,'D11',1); % power on pin D11,
pause(10); % Keep power on for 10 seconds,
writeDigitalPin(a,'D11',0); %power off pin D11,
end % end the for loop,
end % end the if condition.
David Fletcher
David Fletcher on 30 Apr 2021
You will also need to update the distance within the while loop, otherwise the loop would never end (if it was initially entered). What is the value of distance returned from the sensor (your use of any(distance....) suggests that it's a vector rather than a scaler value?

Sign in to comment.

More Answers (0)

Categories

Find more on Arduino Hardware 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!