|
Re: (Java) Error calling subsystem method from command
You're trying to call a non static method from a static context. You can either make the do nothing method static, along with the drive motors, or you can make an instance of the subsystem and call the method of that.
|