/Src/Example/Form1.cs

# · C# · 94 lines · 76 code · 13 blank · 5 comment · 3 complexity · 5624d8b5bc322f62834d0379d6393777 MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. using Prophecy.Communication;
  10. namespace Example
  11. {
  12. public partial class Form1 : Form
  13. {
  14. ICommunication _comm;
  15. public Form1()
  16. {
  17. InitializeComponent();
  18. }
  19. private void btnStart_Click(object sender, EventArgs e)
  20. {
  21. // While this example uses the SerialCommunication class, any of the communication classes could be used... they all implement ICommunication.
  22. // For simplicity we will use 8N1 and not ask on the form.
  23. _comm = new SerialCommunication(txtSerialPort.Text, 9600, System.IO.Ports.Parity.None, 8, System.IO.Ports.StopBits.One);
  24. _comm.Logger = new Prophecy.Logger.TraceLogger(Prophecy.Logger.LoggerVerbosity.Normal); // assign the built-in TraceLogger just as an example. You could create your own logger class.
  25. _comm.Delimiter = "\r"; // change the delimiter since it defaults to "\r\n".
  26. _comm.CurrentEncoding = System.Text.ASCIIEncoding.ASCII; // this is unnecessary since it defaults to ASCII
  27. _comm.ReceivedDelimitedString += new EventHandler<ReceivedDelimitedStringEventArgs>(_comm_ReceivedDelimitedString); // Since our pretend protocol uses \r as the delimiter let's make life easy and subscribe to the ReceivedDelimitedString event. We could also subscribe to ReceivedString and ReceivedBytes.
  28. _comm.IncludeDelimiterInRawResponse = false; // this is unnecessary since it defaults to false
  29. _comm.ReadBufferEnabled = false; // this is unnecessary since it defaults to false and it since we are using the ReceivedDelimitedString event there would be no need to use a buffer.
  30. _comm.DefaultSendDelayInterval = 0; // this is unnecessary since it defaults to 0
  31. // Start connection monitor.
  32. _comm.ConnectionMonitorTimeout = 60000;
  33. _comm.ConnectionMonitorTestRequest = "HELLO\r"; // a pretend message to send when no data has been received for a while (note that serial connections can not detect physical disconnections so we count on this).
  34. _comm.ConnectionEstablished += new EventHandler<EventArgs>(_comm_ConnectionEstablished);
  35. _comm.ConnectionLost += new EventHandler<EventArgs>(_comm_ConnectionLost);
  36. _comm.StartConnectionMonitor(); // if we were not using connection monitoring we could call _comm.Open().
  37. txtSerialPort.Enabled = false;
  38. btnStart.Enabled = false;
  39. }
  40. void _comm_ConnectionEstablished(object sender, EventArgs e)
  41. {
  42. this.invokeIfRequired(() => { lblStatus.Text = "Status: Connected"; });
  43. }
  44. void _comm_ConnectionLost(object sender, EventArgs e)
  45. {
  46. this.invokeIfRequired(() => { lblStatus.Text = "Status: Not Connected"; });
  47. }
  48. private void btnSend_Click(object sender, EventArgs e)
  49. {
  50. _comm.Send(txtSend.Text + "\r"); // our pretend protocol uses \r as the message delimiter.
  51. }
  52. private void btnSimulateReceivedData_Click(object sender, EventArgs e)
  53. {
  54. _comm.SimulateReceivedData(txtSimulateReceivedData.Text + "\r"); // our pretend protocol uses \r as the message delimiter.)
  55. }
  56. void _comm_ReceivedDelimitedString(object sender, ReceivedDelimitedStringEventArgs e)
  57. {
  58. // This is where you would process the message (or queue it to be processed later).
  59. this.invokeIfRequired(() =>
  60. {
  61. txtReceivedData.AppendText(e.RawResponse + "\r\n");
  62. });
  63. }
  64. private void Form1_FormClosed(object sender, FormClosedEventArgs e)
  65. {
  66. if (_comm != null)
  67. {
  68. _comm.Dispose();
  69. _comm = null;
  70. }
  71. }
  72. // this is just a helper function to prevent cross threading issues.
  73. void invokeIfRequired(Action action)
  74. {
  75. if (this.InvokeRequired)
  76. this.Invoke(action);
  77. else
  78. action();
  79. }
  80. }
  81. }