예제 #1
0
 public void CreateClient()
 {
     _client = new RelayingClient(7000);
     _testString =
         "RoomSensor Broadcasting\n" +
         "Location:Teachers room\n" +
         "Platform: Linux - 3.12.28 + -armv6l - with - debian - 7.6\n" +
         "Machine:armv6l\n" +
         "Potentiometer(8bit): 135\n" +
         "Light Sensor(8bit): 195\n" +
         "Temperature(8bit): 218\n" +
         "Movement last detected: 2015 - 11 - 26 08:05:56.060697";
 }
예제 #2
0
 public void CreateClient()
 {
     _client     = new RelayingClient(7000);
     _testString =
         "RoomSensor Broadcasting\n" +
         "Location:Teachers room\n" +
         "Platform: Linux - 3.12.28 + -armv6l - with - debian - 7.6\n" +
         "Machine:armv6l\n" +
         "Potentiometer(8bit): 135\n" +
         "Light Sensor(8bit): 195\n" +
         "Temperature(8bit): 218\n" +
         "Movement last detected: 2015 - 11 - 26 08:05:56.060697";
 }
예제 #3
0
 static void Main(string[] args)
 {
     RelayingClient udpRelayingClient = new RelayingClient(7000);
     udpRelayingClient.ListenForBroadcast();
 }