Shy Robot Programming Challenge: Logic-Based Autonomous Robot
The Shy Robot is an autonomous robot equipped with two IR sensors to avoid obstacles. Its behavior is determined by a logical control system - moving backward if both sensors detect an object, turning right if only the left sensor detects an object, turning left if only the right sensor detects an object, and stopping if no object is detected. The logic behind the robot's control system is crucial for its operation.
Download Presentation
Please find below an Image/Link to download the presentation.
The content on the website is provided AS IS for your information and personal use only. It may not be sold, licensed, or shared on other websites without obtaining consent from the author. Download presentation by click this link. If you encounter any issues during the download, it is possible that the publisher has removed the file from their server.
E N D
Presentation Transcript
Shy Robot Programming Challenge
Shy Robot Shy robot is an autonomous robot, which uses two IR sensors to avoid the object in front of the robot. 2
Logic According to the logic, the robot should have the following behaviour: If both the IR sensors detect the object, then the robot should move backward. Else, if only the left sensor detects the object, then the robot should turn right. Else, if only the right sensor detects the object, then the robot should turn left. Else the robot should stop moving. 4