Closed kaitlinl02 closed 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
TeleopInit
TestInit
==
bool is_awesome = true; if(is_awesome) { //same as if(is_awesome == true) //do thing }
So for some reason, commands can't be run from test. Put your code in
TeleopInit
notTestInit
. Also, when you check if a value is true, you don't have to use==
. Consider