Example #1
0
 public static int playTone(int frequency, int duration) {
   try {
     return nxtCommand.playTone(frequency, duration);
   } catch (IOException ioe) {
     System.out.println(ioe.getMessage());
     return -1;
   }
 }