|
Re: Repeated Error
Quick and Dirty Answer:
You refer to Robot.oi.lStick on line 46 of Robot.java. (See the top of the stack trace). At that point of code execution Robot.oi has been declared (see line 35), but not assigned a value yet. That doesn't happen until late inside the robotInit() function (function starts line 52, assigned value at 67).
If you just declare the variable, and remove the assignment at 46 (and 47) and assign the value in robotInit() after line 67, you should get past that problem.
(Sorry I didn't check for any others you might run into after this.)
|