|
|
|
Java ขอตัวอย่างหรือคำแนะนำในการรับ - ส่งข้อูลผ่าน Serial Port ของ Java GUI ด้วยครับ |
|
|
|
|
|
|
|
รับ - ส่ง ได้แล้วครับ ขอบคุณมากครับผม
|
|
|
|
|
Date :
2016-09-13 15:08:59 |
By :
natchaphon_ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เอา Code มาแชร์กันด้วยก็ดีครับ
|
|
|
|
|
Date :
2016-09-14 09:17:26 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (Java)
SerialPort port;
JButton btn1;
TimerTask task = new TimerTask() {
@Override
public void run() {
try {
port.writeString(sendData);
}
Receivedata = port.readString();
} catch (Exception ex) {
}
}
};
btn1 = new JButton();
btn1.setBounds(150, 100, 150, 25);
btn1.setText("Connect");
btn1.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
port = new SerialPort("COM1");
try {
port.openPort();
port.setParams(115200, 8, 1, 0); //(baudrate , databit , stopbit , parity)
port.writeString(sendData);
Receivedata = port.readString();
timer.scheduleAtFixedRate(task, 50, 50);
} catch (Exception ex) {
ex.printStackTrace();
}
}
});
ประมาณนี้ครับ ผิดพลาดประการใดขออภัยด้วยครับผม
|
|
|
|
|
Date :
2016-09-14 16:30:20 |
By :
natchaphon_ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เยี่ยมเลยครับ
|
|
|
|
|
Date :
2016-09-15 10:01:26 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|