The Fockers Fire Focker Mechanical Engineering: Seth McDowell, Chyle - - PowerPoint PPT Presentation

the fockers
SMART_READER_LITE
LIVE PREVIEW

The Fockers Fire Focker Mechanical Engineering: Seth McDowell, Chyle - - PowerPoint PPT Presentation

The Fockers Fire Focker Mechanical Engineering: Seth McDowell, Chyle McMahon Electrical Engineering: Tom Sterbis Computer Science: Mike Grim State Diagram Mechanical Goals Primary Robot: Gearing Accuracy Turret Secondary


slide-1
SLIDE 1

The Fockers

Fire Focker

Mechanical Engineering: Seth McDowell, Chyle McMahon Electrical Engineering: Tom Sterbis Computer Science: Mike Grim

slide-2
SLIDE 2

State Diagram

slide-3
SLIDE 3
slide-4
SLIDE 4

Mechanical Goals

  • Primary Robot:

– Gearing – Accuracy – Turret

  • Secondary Robot:

– Torque

slide-5
SLIDE 5
slide-6
SLIDE 6

Engineering Overview

  • Keep
  • It
  • Simple
  • Stupid
  • Sonar
  • Touch
  • Camera

Handy Board Digital port 8 Digital port 9 Digital port 10 Breadboard With Tone Sensors 300Hz 1000Hz 5000Hz Power wire and ground

slide-7
SLIDE 7

Custom Sensor

slide-8
SLIDE 8
slide-9
SLIDE 9

Path Planner/Compression

  • Best-first-search.
  • 100 bits instead of 100 integers to represent maps.
  • Resulting compression per map is a 93.75% savings.
  • Tours are still full-length 1-D arrays: gives us an order in which to traverse map.
  • 4x4 Grid:

{{ 0, 0, 0, 0 }, { V, B, B, 0 }, {0, B, V, 0 }, { 0, 0, 0, 0 }} <-- 32 bytes

  • 1-D Array:

{ 0,0,0,0,V,B,B,0,0,B,V,0,0,0,0,0 } <-- 32 bytes

  • 1-D Bitset of Obstacles:

0000 0110 0100 0000 <-- 2 bytes

  • 1-D Bitset of Victims:

0000 1000 0010 0000 <-- 2 bytes

  • Savings: 4 bytes / 32 bytes = 87.5% Compression
slide-10
SLIDE 10
slide-11
SLIDE 11

Questions?