DataReceived 이벤트를 사용할 수 있습니다. 새 데이터가 포트에 도착할 때마다 해고 될 것입니다. 이처럼에 등록해야합니다 :
SerialPort port = new SerialPort(/*your specification*/);
port.DataReceived += Port_DataReceived;
이벤트 처리기에서 당신은 다음 지금 방금 포트를 열 필요가 들어오는 데이터
private void Port_DataReceived(object sender, SerialDataReceivedEventArgs e)
{
SerialPort port = sender as SerialPort;
if (port != null)
{
var incoming_message = port.ReadExisting();
}
}
을 읽을 것이며, 자동으로 수신합니다. 노트! 들어오는 데이터는 주 스레드와 다른 스레드에 도착합니다.
var incoming_message = port.ReadLine();
아니면 시도 할 수 있습니다 : 데이터가 당신이 ReadLine
방법을 사용하여 시도 할 수 \n
과 끝 부분에 표시되어있는 경우는 표시 양식의 컨트롤을 사용하려는 경우 그래서 당신은 BeginInvoke
를 사용할 필요가 ReadTo
var incoming_message = port.ReadTo("\n");
편집 :
시간이 오래 걸리는 경우 일괄 적으로 읽어야합니다. while 루프에서 처리하려고 할 수도 있습니다.
private void Port_DataReceived(object sender, SerialDataReceivedEventArgs e)
{
SerialPort port = sender as SerialPort;
string message = "";
if (port != null)
{
while(port.BytesToRead > 0)
{
message += port.ReadExisting();
System.Threading.Thread.Sleep(500); // give the device time to send data
}
}
}
편집 2 :
당신이 데이터가 이벤트 핸들러의 List<string>
외부를 선언하고이 완전히 읽을 때 문자열을 추가 저장합니다.
List<string> dataStorage = new List<string>();
private void Port_DataReceived(object sender, SerialDataReceivedEventArgs e)
{
SerialPort port = sender as SerialPort;
string message = "";
if (port != null)
{
while(port.BytesToRead > 0)
{
message += port.ReadExisting();
System.Threading.Thread.Sleep(500); // give the device time to send data
}
// add now the entire read string to the list
dataStorage(message);
}
}
이벤트 핸들러는 A
또는 B
그냥 하나의 목록에서 전체 수신 된 메시지를 수집 보내 여부를 알 수 없기 때문에
. 당신은 너무 나중에 해당 메시지를 꺼내 배열에 400 개 항목을 얻을 수
Split
을 사용할 수 있습니다, 당신은 당신의 명령을 보내도록하는 순서를 알고
string [] A_array_data = dataStorage[0].Split(" ");
는 당신이 우리를 보여줄 수있는 어떤 코드 샘플을 가지고 있습니까? –
새로 추가하는 중 stackoverflow – oakar
양식 닫기 이벤트에서 아마도 직렬 포트에서'Close()'호출을 시도 할 수 있습니다. 'BackgroundWorker'를 사용하는 경우 읽기 호출을 차단 해제해야합니까? – nicholas