Beispiel #1
0
 public UdpSensor(Stopwatch stopwatch, Int32 port = 9900)
 {
     _sensor = new Sensor();
     _udp    = new UdpThread(stopwatch, port);
 }
Beispiel #2
0
 public UdpActuator(Stopwatch stopwatch, Int32 port = 9901)
 {
     _actuator = new Actuator();
     _udp      = new UdpThread(stopwatch, port);
 }