Skip to content

RST not works #599

@alex-eri

Description

@alex-eri

Step 1: Describe your environment

  • OS version: Ubuntu 22.04
  • Arduino IDE version: PlatformIO 3.1.1
  • MFRC522 Library version: 1.4.10
  • Arduino device: ESP32-WROOM-32D
  • MFRC522 device: XFW-ETLIVE MINI RFID-RC522

Step 2: Describe the problem

Affected file(s) or example(s):

Steps to reproduce:

I connect to module ESP32-WROOM-32D without devkit:

  • io16-rst
  • io17-irq
  • io5-ss

Same power source AMS1117.

Init with mfrc522.PCD_Init(RFID_SS_PIN, RFID_RST_PIN);

Observed Results:

Radio chains Not starts. Cards not readed. But PCD_PerformSelfTest is OK. LOW on RFID_RST_PIN.

Expected Results:

Working reader

Relevant Code:

I make this workaround: Reader works perfect.

    pinMode(RFID_RST_PIN, OUTPUT);
    digitalWrite(RFID_RST_PIN, LOW);
    delay(2);
    digitalWrite(RFID_RST_PIN, HIGH);
    delay(2);

    mfrc522.PCD_Init(RFID_SS_PIN, 255); 
    //mfrc522.PCD_Init();

Maybe INPUT_PULLDOWN here is better?

pinMode(_resetPowerDownPin, INPUT);

	pinMode(_resetPowerDownPin, INPUT_PULLDOWN);

Metadata

Metadata

Assignees

No one assigned

    Labels

    bug 🐛a not intended featurehardware 🔌not a problem with the software

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions