Esempio n. 1
0
 public InFeed(SerialSettings settings, string switchValue="")
 {
     Port = new SerialPortManager(settings.PortName)
     {
         Settings = settings
     };
     SwitchValue = switchValue;
 }
Esempio n. 2
0
 public OutFeed(SerialSettings settings)
 {
     Port = new SerialPortManager(settings.PortName)
     {
         Settings = settings
     };
     _outputMessage = string.Empty;
 }