I’m having trouble calling methods from subsystems on Netbeans. When I call DriveSystem, it shows up fine and the preset methods show up, but whenever I try to call a method that I created myself it gives me an error saying “cannot find symbol method doNothing()”. I tried different subsystems and commands, and even tried renaming them, but nothing seems to work and I can’t find anything that might cause an error.
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.