Quote:
Originally Posted by LFRobotics
Netbeans gets all mad and says
incompatible types: XBoxController cannot be converted to GenericHID
|
You can have the XBoxController class extend GenericHID and have NetBeans implement all abstract methods:
Code:
public class XBoxController extends GenericHID{
...
}
and that should allow you to cast XBoxController to a GenericHID.
notmattlythgoe's suggestion is much better, but for a quick fix right now this should work.