/// <summary> /// Constructor /// </summary> /// <param name="commLayer">Communication layer to use</param> public PN532(IPN532CommunicationLayer commLayer) { this.commLayer = commLayer; powerMode = PowerMode.LowVbat; }
/// <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); }