Difference between revisions of "ECE597 Project Sumo Robot"

From eLinux.org
Jump to: navigation, search
m (Tasks: Removed duplicate SRF08 task)
m
Line 1: Line 1:
 
The goal of this project is to create a BeagleBoard-powered robot capable of competing in an autonomous sumo competition in the 3.0 kg weight class ([http://www.youtube.com/watch?v=V3OR_sHrOJM an example]).  This would have minor hardware and electronics elements, but would focus on communication with sensors using the BeagleBoard and the Linux kernel.  At minimum, this involves sensors to detect the edge of the ring and the opposing robot.
 
The goal of this project is to create a BeagleBoard-powered robot capable of competing in an autonomous sumo competition in the 3.0 kg weight class ([http://www.youtube.com/watch?v=V3OR_sHrOJM an example]).  This would have minor hardware and electronics elements, but would focus on communication with sensors using the BeagleBoard and the Linux kernel.  At minimum, this involves sensors to detect the edge of the ring and the opposing robot.
  
== Team Members ==
+
== Sumo Competition Rules ==
  
* [[User:Tomwm|Tom Most]]
+
The goal of a sumo competition is to force an opposing robot out of a circular ring without being either being pushed out or running out of the ring accidentally.  In the 3kg weight class, the two opposing robots begin approximately 20 cm from each other in the middle of a 154 cm diameter black dohyo (raised cylinder) with white lines painted along its edge to designate the boundary.  The robots may not use any methods other than simple motive force to force their opponent out of the ring and must operate completely autonomously.  The robot that forces its opponent off of the dohyo wins the match. 
* [[User:Batydm|David Baty]]
 
* [[User:Zeta Syanthis|Mark Jacobson]]
 
  
 
== Tasks ==
 
== Tasks ==
Line 78: Line 76:
 
* Power conversion
 
* Power conversion
 
** Motors take 7.2 V, 4A at stall
 
** Motors take 7.2 V, 4A at stall
 +
 +
== Team Members ==
 +
 +
* [[User:Tomwm|Tom Most]]
 +
* [[User:Batydm|David Baty]]
 +
* [[User:Zeta Syanthis|Mark Jacobson]]
  
 
== Links ==
 
== Links ==
Line 83: Line 87:
  
 
[[Category:ECE597]]
 
[[Category:ECE597]]
 +
[[Category:Robotics]]

Revision as of 21:23, 25 April 2010

The goal of this project is to create a BeagleBoard-powered robot capable of competing in an autonomous sumo competition in the 3.0 kg weight class (an example). This would have minor hardware and electronics elements, but would focus on communication with sensors using the BeagleBoard and the Linux kernel. At minimum, this involves sensors to detect the edge of the ring and the opposing robot.

Sumo Competition Rules

The goal of a sumo competition is to force an opposing robot out of a circular ring without being either being pushed out or running out of the ring accidentally. In the 3kg weight class, the two opposing robots begin approximately 20 cm from each other in the middle of a 154 cm diameter black dohyo (raised cylinder) with white lines painted along its edge to designate the boundary. The robots may not use any methods other than simple motive force to force their opponent out of the ring and must operate completely autonomously. The robot that forces its opponent off of the dohyo wins the match.

Tasks

  • Build physical robot [On track]
    • Drivetrain [Mostly complete]
      • Water-cut plates [Done]
      • Cut corner fasteners [Mostly complete] (front and rear panel corners need work)
      • Assemble [Mostly complete]
    • Electronics box (to be done after electronics have been completed) [Not started]
  • Construct electronics [In Progress]
  • Interface Beagle with external components
    • I2C (sonic rangefinders, accelerometer) [In progress]
    • PWM (motor control) [Completed]
    • ADC (IR rangefinders, edge sensors) [Completed]
    • GPIO (LED, buttons, motor control) [In progress - Waiting on MUX]
  • Write control software [Not started]
    • Low-level motor control [In progress]
    • Detect and prevent exit from arena [Not started]
    • Detect and ram competitor [Not started]
    • Recover from a competitor's attack [Not started]
  • Build or print sumo ring [Not started]

Hardware Details

Sensors

  • IR rangefinders -- Sharp GP2D12
    • Analog voltage output fed to ADC.
    • Voltage output varies non-linearly with distance. See datasheet link above for details.
  • Sonic rangefinders (need a way to power-cycle these [1]) -- SRF08
    • Primary sensing: Distance in in cm/inches/μs up to 6 meters.
    • Secondary sensing: Light Amount [Not used in our application]
    • 5V required. 3mA standby, 11mA during ranging.
    • Communication via I2C bus.
  • Header for three-axis accelerometer module
    • Auto-ranging from +-2/4/8/16 g in z,y,z
    • Vs = 2.0-3.3V and Vi/o 1.7V-Vs
    • Communication via I2C bus
  • Edge sensors (used to detect the white lines at the edge of the ring)
  • USB camera (eventually; low priority)
  • Contact sensors (Cherry roller leaf switches)

Other I/O

  • Motor control
    • Two PWM pins used for speed control
    • Two GPIO for direction selection
    • Use four L298 motor drivers (one for each motor)
  • Input button to start 5-second match countdown
  • LEDs
    • "Ready" LED (blinks when counting down to match start)

Misc

  • Power conversion
    • Motors take 7.2 V, 4A at stall

Team Members

Links