Ejemplo n.º 1
0
    private void rfidAttached(object sender, Phidgets.Events.AttachEventArgs e)
    {
        print("RFID reader attached.");
        print("Name: " + reader.Name);

        print(reader.Antenna);
    }
Ejemplo n.º 2
0
 //phidgit controller has signalled that it is good to go
 void PhidgitController_Attach(object sender, Phidgets.Events.AttachEventArgs e)
 {
     logger.Info("PhidgitController_Attach");
     PhigTimer.IsEnabled = false;
     CheckSystemState(true);
 }
Ejemplo n.º 3
0
 void PhidgitController_Attach(object sender, Phidgets.Events.AttachEventArgs e)
 {
     Debug.WriteLine("Attach {0}", e.Device.Name);
 }
Ejemplo n.º 4
0
 static void ir_Attach(object sender, Phidgets.Events.AttachEventArgs e)
 {
     Console.WriteLine("PhidgetIR {0} attached!",
                       e.Device.SerialNumber.ToString());
 }