Solution updated to remove all TX/RX data that device classes are printing when talking to 3rd party devices

This commit is contained in:
Jonathan Arndt
2021-03-09 23:12:57 -08:00
parent c5aef18943
commit f74fa35ca4
7 changed files with 32 additions and 47 deletions

View File

@@ -96,7 +96,6 @@ namespace PepperDash.Essentials.Core
// this is a permanent event handler. This cannot be -= from event
CommPort.TextReceived += (s, a) =>
{
Debug.Console(2, this, "RX: {0}", a.Text);
trilist.SetString(joinMap.TextReceived.JoinNumber, a.Text);
};
trilist.SetStringSigAction(joinMap.SendText.JoinNumber, s => CommPort.SendText(s));