Skip to content

Latest commit

 

History

History
22 lines (19 loc) · 1.59 KB

README.md

File metadata and controls

22 lines (19 loc) · 1.59 KB

AVC_2015_GizmoBot1

Repository for AVC code.

This is the codebase for The Gizmo Dojo's 2015 Sparkfun AVC entry. Documentation will be sketchy, but the basics should be here.

I've written the beginnings of a library for our very specific hardware setup. This is designed to prevent damage to the control board.

The following commands can be used to move the car:

init_movement();                // Please call this at the beginning of setup().
move_forward(time_in_ms);       // This moves forward <time_in_ms> and coasts.
move_forward_stop(time_in_ms);  // This moves forward <time_in_ms> and stops.
move_reverse(time_in_ms);       // This moves backwards <time_in_ms> and coasts.
move_reverse_stop(time_in_ms);  // This moves backwards <time_in_ms> and stops.
wheels_left();                  // This turns the wheels to the left position.
wheels_right();                 // This turns the wheels to the right position.
wheels_center();                // This turns the wheels to the center (or straight) position.

 
More commands may be added if they are deemed useful.