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