public boolean stop() {
   try {
     System.out.println("Stop the Drone controlling.");
     drone.stop();
     return true;
   } catch (Exception e) {
     e.printStackTrace();
     return false;
   }
 }