Exemple #1
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="commLayer">Communication layer to use</param>
 public PN532(IPN532CommunicationLayer commLayer)
 {
     this.commLayer = commLayer;
     powerMode      = PowerMode.LowVbat;
 }
Exemple #2
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="commLayer">Communication layer to use</param>
 public PN532(IPN532CommunicationLayer commLayer)
 {
     this.commLayer = commLayer;
     this.powerMode = PowerMode.LowVbat;
 }
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="commLayer">Communication layer to use with PN532 ic</param>
 public NfcPN532Reader(IPN532CommunicationLayer commLayer)
 {
     this.pn532 = new PN532(commLayer);
 }
Exemple #4
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="commLayer">Communication layer to use with PN532 ic</param>
 public NfcPN532Reader(IPN532CommunicationLayer commLayer)
 {
     this.pn532 = new PN532(commLayer);
 }