1 / 19

Control

Control. Some Material taken from RobotSubsumption.pdf. Remember Where Are We Going?. Sumo-Bot competitions. QTI Sensors. Used to “see” the white boundary ring. P7. P3. P6. P2. Left Side. Right Side. QTI Sensors. Code. More Info: Chapter 3 of Applied Robotics with the SumoBot.

jsaenz
Télécharger la présentation

Control

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Control Some Material taken from RobotSubsumption.pdf

  2. Remember Where Are We Going? Sumo-Bot competitions

  3. QTI Sensors Used to “see” the white boundary ring

  4. P7 P3 P6 P2 Left Side Right Side QTI Sensors Code More Info: Chapter 3 of Applied Robotics with the SumoBot

  5. Finite State Machine (FSM) Representation

  6. Sonar Range Finder Used to “see” the your opponent

  7. Sonar Range Finder Documentation Code

  8. Finite State Machine (FSM) Representation

  9. IR Detectors Often used to “see” to the side (short-range)

  10. IR Detectors More Info: Chapter 3 of Applied Robotics with the SumoBot Code

  11. No Obj Obj left Obj right Obj forward Read IR go forward turn right turn left go backward Finite State Machine (FSM) Representation

  12. go forward turn left turn right backup Read QTI How to Put It Together? No Obj Obj left Obj right Obj forward Read IR & sonar Go forward turn right turn left go forward both high left low right low both low

  13. Possible Problems • Jerky or halting movement • Chase object over boundary • Never detect opponent • More?

  14. Possible Solution • Subsumption Architecture A programming process by which one behavior subsumes, or over-rides another based on an explicit priority that we have defined. First described by Dr. Rodney Brooks in "A robust layered control system for a mobile robot,” IEEE Journal of Robotics and Automation., RA-2, April, 14-23, 1986. • FSM with exit conditions

  15. Go forward Go backwards turn teft turn right read IR & sonar and set nextState variable Read QTI and set nextState variable check nextState variable and branch FSM

  16. backup turn right turn left go forward read Photoresistors and set nextState variable check nextState variable and branch Read IR Alternative FSM Go forward turn right turn left go forward

  17. Program High-Level Outline • Declare pin assignments, constants and variables • Initialize thresholds • Wait the required start delay • Read boundary line sensors and move accordingly • If the boundary line is not detected, read proximity sensors and move accordingly • Repeat steps 4 and 5 until completion

  18. Main Loop Do GOSUB Read_Line_Sensors IF (lightLeft < leftThresh) AND (lightRight < rightThresh) THEN GOSUB About_Face ' boundary ahead ELSEIF (lightLeft < leftThresh) THEN GOSUB Spin_Right ' boundary to left ELSEIF (lightRight < rightThresh) THEN GOSUB Spin_Left ' boundary to right ELSE PULSOUT LMotor, LFwdFast PULSOUT RMotor, RFwdFast GOSUB Search_For_Opponent ENDIF Loop Code

  19. Changes that you should make • Change all I/O Definitions to match your configuration • Change motion control subroutines to suit your wheel base • Use debug statements to make sure that all sensors are working • Modify the code to incorporate your winning stragegy

More Related