|
|
![]() |
|
||||||||||||||
|
|||||||||||||||
Code for Team 254's Robot - Onslaught
Here is a snapshot of 254/968's robot software. This is the last check in we had at the Championship Event. There's a few parts that might be a bit messy, but I'd rather get it up here than plan to clean it up and forget about it.
The software was capable of scoring 3 balls in auto, kicking 5 balls in auto, entering/blocking the tunnel in auto, crossing multiple bumps in auto, and a bunch of other cool stuff.
Feel free to post questions or comments... I'd be happy to elaborate. If you want to re-use parts of it for your robot... go for it!
Team254-2010Code.zip
07-10-2010 01:55 AM
Pat Fairbank
Thanks for sharing! I love looking at other teams' code to learn new tricks.
Out of curiosity, what led to the decision to use a separate singleton class to hold all the sensors, actuators and logic instead of putting them in the class that inherits from IterativeRobot?
I really like the constants class and how you can read and save constants from/to a file. I'd definitely like for my team to adopt this, although I'm thinking of using preprocessor macros to ensure existence of constants at compile-time and avoid the (albeit negligible) performance cost of associative array lookups.
The auton command lists are really cool, too.
10-22-2010 09:35 PM
Tom Bottiglieri|
Thanks for sharing! I love looking at other teams' code to learn new tricks.
Out of curiosity, what led to the decision to use a separate singleton class to hold all the sensors, actuators and logic instead of putting them in the class that inherits from IterativeRobot? I really like the constants class and how you can read and save constants from/to a file. I'd definitely like for my team to adopt this, although I'm thinking of using preprocessor macros to ensure existence of constants at compile-time and avoid the (albeit negligible) performance cost of associative array lookups. The auton command lists are really cool, too. |