HashConnection is a transport for exchanging hashtables, transmitted over UDP using JSON.
        public PiEMOSConfiger(string piemosAddress, int listen, int send, string config)
        {
            this.conn = new HashConnection(listen, send);
            this.conn.AddHashConPacketListener(this);
            this.piemosAddress = piemosAddress;
            this.config        = config;
            this.done          = false;
//          this.SendCommand ("Reset");
        }
Beispiel #2
0
 public PiEMOSConfiger(string piemosAddress, int listen, int send, string config)
 {
     this.conn = new HashConnection (listen, send);
     this.conn.AddHashConPacketListener (this);
     this.piemosAddress = piemosAddress;
     this.config = config;
     this.done = false;
     //          this.SendCommand ("Reset");
 }
 public PiEMOSTimer(string piemosAddress, int listen, int send)
 {
     this.conn = new HashConnection(listen, send);
     this.conn.AddHashConPacketListener(this);
     this.piemosAddress = piemosAddress;
 }
Beispiel #4
0
 public PiEMOSTimer(string piemosAddress, int listen, int send)
 {
     this.conn = new HashConnection(listen, send);
     this.conn.AddHashConPacketListener(this);
     this.piemosAddress = piemosAddress;
 }