Example #1
0
 public Production(decimal Freq, int SimbolRate, decimal SNR, int Port1, int Port2, IguiInterface gui)
 {
     freq       = Freq;
     simbolRate = SimbolRate;
     sNR        = SNR;
     port1      = Port1;
     port2      = Port2;
     this.gui   = gui;
 }
Example #2
0
 public CygnusDevice(Uri WebSocketUrl, IguiInterface Gui) : base(WebSocketUrl, Gui)
 {
     log.Debug("Cygnus initlized");
 }
Example #3
0
 public CICDDevice(Uri WebSocketUrl, IguiInterface Gui) : base(WebSocketUrl, Gui)
 {
     log.Debug("Cicd device initialized. [" + WebSocketUrl.ToString() + "]");
 }
Example #4
0
 public MediationDevice(Uri WebSocketUrl, IguiInterface Gui) : base(WebSocketUrl, Gui)
 {
     log.Debug("Mediation intilized");
 }
Example #5
0
 public Device(Uri WebSocketServer, IguiInterface Gui)
 {
     webSocketServer = WebSocketServer;
     gui             = Gui;
     log.Debug(MethodBase.GetCurrentMethod().DeclaringType.Name + "Created as device");
 }
 public DownConverterDevice(IPAddress ipAddress, Uri webSocketServer, IguiInterface gui)
     : base(webSocketServer, gui)
 {
     _device = Lbc4000.GetDevice(ipAddress);
 }