Ejemplo n.º 1
0
 private void OnCommandA_Click(object sender, EventArgs e)
 {
     //Example command LCD ON, this command does not require wait for answer
     if (m_objRFE != null && m_objRFE.PortConnected)
     {
         m_objRFE.SendCommand_ScreenON();
         Thread.Sleep(100); //Wait 100ms to wait for command to settle
     }
 }