Quote:
Originally Posted by Bennett
cannot find symbol
symbol: variable timeout
location:class edu.wpi.first.wpilibj.templates.commands.turnLeft
|
This error means that the compiler is looking for a variable named "timeout" and can't find it. I'm guessing you meant for timeout to be a parameter of the constructor, but forgot to actually put it in. The change is easy:
Code:
public turnLeft(double timeout) {