I downloaded the CANJaguar example that included the source code from First Forge (rev. 50, created on 02/18/2010 4:46 AM), but when I tried to run it CANJaguar.java gave me this error:
edu.wpi.first.addons.CANJaguar is not abstract and does not override abstract method disable() in edu.wpi.first.wpilibj.SpeedController
public class CANJaguar implements JaguarCANProtocol, SpeedController {
It turns out CANJaguar doesn’t implement disable() or set(double speed, byte syncGroup) from SpeedController, but it does have get() and set(double speed). Does anyone else have this problem? I figured I could just add those in as empty methods to get it to compile but I didn’t know if there was a bigger problem. If it’s as simple as adding in those methods, could someone just share the with me so I can paste them in?