/**
  * Get the output current of motor b
  *
  * @return Current
  */
 public double getCurrentB() {
   try {
     return rollerB.getOutputCurrent();
   } catch (Exception e) {
     new ExceptionHandler(e, "Roller Claw").print();
     return -0;
   }
 }