Beispiel #1
0
 /**
  * Send Break singnal for setted duration
  *
  * @param duration duration of Break signal
  * @return If the operation is successfully completed, the method returns true, otherwise false
  * @throws SerialPortException
  * @since 0.8
  */
 public boolean sendBreak(int duration) throws SerialPortException {
   checkPortOpened("sendBreak()");
   return serialInterface.sendBreak(portHandle, duration);
 }