コード例 #1
0
ファイル: LiftCommand.java プロジェクト: FRC1640/2015-Code
 public LiftCommand(Button button, String name) {
   this.button = button;
   this.name = name;
   liftIO = LiftIO.getInstance();
   liftIO.setA(false);
   liftIO.setB(false);
   liftIO.setPOV(-1);
 }