private boolean createConnection() {
   cs = new socket(ip, port);
   try {
     cs.CreateConnection();
     System.out.print("Conneted with helicopter!" + "\n");
     return true;
   } catch (Exception e) {
     System.out.print("Fail to conncet with helicopter!" + "\n");
     return false;
   }
 }