Advertisement
Guest User

Untitled

a guest
May 30th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. private class StopScanButtonListener implements ActionListener {
  2. @Override
  3. public void actionPerformed(ActionEvent e) {
  4. try {
  5. portConnection.writeByte((byte) 0xFF);
  6. portConnection.writeByte((byte) 0x05);
  7. portConnection.writeByte((byte) 0xFF);
  8. } catch (SerialPortException | NullPointerException e1) {
  9. labelState.setText("Ошибка! Возможно вы не подключились к устройству!");
  10. labelState.repaint();
  11. }
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement