- Code: Select all
Request FAILED
Category: calibration
Request: start
StatusCode: 403
StatusMessage: Calibration already in progress
i called Calibration abort also but it seems doesn't work.
- Code: Select all
CalibrationHandler handler = new CalibrationHandler();
if(!GazeManager.getInstance().isCalibrating()){
GazeManager.getInstance().calibrationStart(9, handler);
}else{
System.out.println(" not started : "+GazeManager.getInstance().isCalibrating());
GazeManager.getInstance().calibrationAbort();
System.out.println(" still calibrating : "+GazeManager.getInstance().isCalibrating());
GazeManager.getInstance().calibrationStart(9, handler);
}