public void FixedUpdate() { if (sPort.BytesToRead > 0) { string msg = sPort.ReadLine(); _elSys.FindNewCard(msg); } }
private void ReadCycle() { try { sPort.Open(); while (true) { if (sPort.BytesToRead > 0) { string msg = sPort.ReadLine(); _elSys.FindNewCard(msg); } Thread.Sleep(10); } } catch { throw; } finally { sPort.Close(); } }
public void FindNewCard(string card) { system.FindNewCard(card); }