Example #1
0
 public void SendCommand(EtcCommand s)
 {
     Debug.Console(2, this, "Command: {0}", s._cmd);
     Communication.SendText(s._cmd);
     TestTx = s._cmd;
     TestTxFeedback.FireUpdate();
 }
Example #2
0
 public void SendCommand(string s)
 {
     Debug.Console(2, this, "Command: {0}", s);
     Communication.SendText(s);
     TestTx = s;
     TestTxFeedback.FireUpdate();
     Debug.Console(2, this, "TestFeedbackTx: {0} - TestTx: {1}", TestTxFeedback.StringValue, TestTx);
 }