Team612 / 612-2017

Chantilly Robotics Team 612 robot code repository for 2017 game FIRST Steamworks
GNU General Public License v3.0
4 stars 4 forks source link

added a toggle-able value for System Check #46

Closed kaitlinl02 closed 7 years ago

Ahmad-Bamba commented 7 years ago

So for some reason, commands can't be run from test. Put your code in TeleopInit not TestInit. Also, when you check if a value is true, you don't have to use ==. Consider

bool is_awesome = true;
if(is_awesome) { //same as if(is_awesome == true)
    //do thing
}