Skip to content

Commit

Permalink
Fix reset initial state
Browse files Browse the repository at this point in the history
  • Loading branch information
ljos committed Feb 13, 2014
1 parent 9f9bc98 commit 6cfedc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MFRC522.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ MFRC522::MFRC522(int sad, int reset) {

_reset = reset;
pinMode(_reset, OUTPUT); // Set digital pin, Not Reset and Power-Down
digitalWrite(_reset, HIGH);
digitalWrite(_reset, LOW);

}

Expand Down

0 comments on commit 6cfedc7

Please sign in to comment.