Below you will find a tutorial list of videos and instructions for you to follow. Please follow each tutorial and complete the assignment located on google classroom for credit.
Please watch this video to learn about if then statements
Please watch this video to learn about if then else statements
For this challenge, utilizing several if-then blocks you will program your robot to make a decision.
-IF your robot senses blue it should display a "B"
-IF your robot senses green it should display a "G"
-IF your robot senses yellow if should display a "Y"
-IF your robot senses red it should display a "R"
For this challenge, utilizing a if-then-else block you will program your robot to make a decision. IF the robot senses something green THEN make a 90 degree right turn. If the robot does not sense anything in green ELSE make a 90 degree left turn.
For this challenge, utilizing a if-then-else block you will program your robot to make a decision. IF the robot senses something in front of the robot THEN make a 90 degree turn. If the robot does not sense anything in front of the robot ELSE move forward for 3 rots.
For this challenge, utilizing a if-then-else block you will program your robot to make a decision. IF the robot senses something in front of the robot THEN make a 90 degree right turn. If the robot does not sense anything in front of it ELSE continue moving forward through the maze. Your robot should stop after it makes it through the maze one time.
For this challenge, utilizing a if-then-else block you will program your robot to make a decision. IF the robot senses something in front of the robot THEN make a 90 degree right turn and display a Right Arrow. If the robot does not sense anything in front of it ELSE continue moving forward through the maze and display an arrow pointing forward.