You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Tried to save power by switching off and on when required.
I used following code:
if (selectionReceived == 700) // power down
{
pinMode(RST_MRFC_PIN, OUTPUT);
digitalWrite(RST_MRFC_PIN, LOW); // hard power down of RFID board
}
if (selectionReceived == 701 ) // power up again
{
digitalWrite(RST_MRFC_PIN, HIGH);
mfrc522.PCD_Init(); // Init MFRC522 ; Power up RFIDoard
}
The unit powers down because I see the current dropping by approx 20mA.
The restart does not work. Do I use the right code? Or is this a bug?
Help is very much appreciated.
The text was updated successfully, but these errors were encountered:
OS version: W10___
Tried to save power by switching off and on when required.
I used following code:
The unit powers down because I see the current dropping by approx 20mA.
The restart does not work. Do I use the right code? Or is this a bug?
Help is very much appreciated.
The text was updated successfully, but these errors were encountered: