Witam !
Chciałbym zrobić program który odbierał by dane z portu com i wyświetlał je w JTextField, a po naciśnięciu przycisku wysyłał odpowiednie dane.
Stworzyłem już klase ramki z przyciskami i polem tekstowym.
import gnu.io.SerialPortEvent;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.Date;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
public class OknoProgramu extends JFrame implements ActionListener
{
public static int EXIT1 = EXIT_ON_CLOSE;
JButton bOne, bTwo, bThree;
public JTextArea poleOutPut;
public OknoProgramu()
{
setSize(500, 700);
setTitle("ArduinoControll");
setLayout(null);
bOne = new JButton("One");
bOne.setBounds(110, 20, 70, 40);
add(bOne);
bTwo = new JButton("Two");
bTwo.setBounds(200, 20, 70, 40);
add(bTwo);
bThree = new JButton("Three");
bThree.setBounds(290, 20, 70, 40);
add(bThree);
poleOutPut = new JTextArea();
JScrollPane suwak = new JScrollPane(poleOutPut);
suwak.setBounds(40, 100, 400, 200);
add(suwak);
}
public static void main(String[] args) {
OknoProgramu okno = new OknoProgramu();
okno.setDefaultCloseOperation(EXIT_ON_CLOSE);
okno.setVisible(true);
}
@Override
public void actionPerformed(ActionEvent e)
{
Object źródło = e.getSource();
}
}
I znalazłem jakiś gotowy skrypt bazujący na biblotece RXTX który odbiera i wyświetla dane z portu com w konsoli.
import java.io.InputStream;
import java.io.OutputStream;
import gnu.io.CommPortIdentifier;
import gnu.io.SerialPort;
import gnu.io.SerialPortEvent;
import gnu.io.SerialPortEventListener;
import java.util.Enumeration;
public class SerialTest implements SerialPortEventListener {
SerialPort serialPort;
/** The port we're normally going to use. */
private static final String PORT_NAMES[] = {
"/dev/tty.usbserial-A9007UX1", // Mac OS X
"/dev/ttyUSB0", // Linux
"COM5", // Windows
};
/** Buffered input stream from the port */
private InputStream input;
/** The output stream to the port */
private OutputStream output;
/** Milliseconds to block while waiting for port open */
private static final int TIME_OUT = 2000;
/** Default bits per second for COM port. */
private static final int DATA_RATE = 9600;
public void initialize() {
CommPortIdentifier portId = null;
Enumeration portEnum = CommPortIdentifier.getPortIdentifiers();
// iterate through, looking for the port
while (portEnum.hasMoreElements()) {
CommPortIdentifier currPortId = (CommPortIdentifier) portEnum.nextElement();
for (String portName : PORT_NAMES) {
if (currPortId.getName().equals(portName)) {
portId = currPortId;
break;
}
}
}
if (portId == null) {
System.out.println("Could not find COM port.");
return;
}
try {
// open serial port, and use class name for the appName.
serialPort = (SerialPort) portId.open(this.getClass().getName(),
TIME_OUT);
// set port parameters
serialPort.setSerialPortParams(DATA_RATE,
SerialPort.DATABITS_8,
SerialPort.STOPBITS_1,
SerialPort.PARITY_NONE);
// open the streams
input = serialPort.getInputStream();
output = serialPort.getOutputStream();
// add event listeners
serialPort.addEventListener(this);
serialPort.notifyOnDataAvailable(true);
} catch (Exception e) {
System.err.println(e.toString());
}
}
/**
* This should be called when you stop using the port.
* This will prevent port locking on platforms like Linux.
*/
public synchronized void close() {
if (serialPort != null) {
serialPort.removeEventListener();
serialPort.close();
}
}
/**
* Handle an event on the serial port. Read the data and print it.
*/
public synchronized void serialEvent(SerialPortEvent oEvent) {
if (oEvent.getEventType() == SerialPortEvent.DATA_AVAILABLE) {
try {
int available = input.available();
byte chunk[] = new byte[available];
input.read(chunk, 0, available);
// Displayed results are codepage dependent
System.out.print(new String(chunk));
} catch (Exception e) {
System.err.println(e.toString());
}
}
// Ignore all the other eventTypes, but you should consider the other ones.
}
public static void main(String[] args) throws Exception {
SerialTest main = new SerialTest();
main.initialize();
System.out.println("Started");
}
}
Że, javy dopiero się uczę, nie potrafię sprawić by obie klasy potrafiły ze sobą "rozmawiać’ tzn. żeby klasa OknoProgramu mogło odczytywać dane z portu com jak i je wysyłać.
Z góry dziękuję za pomoc
System Win7 x64, IDE Eclipse, JavaSE-1.7.