Skip to content

Commit

Permalink
Revert "Fix reset initial state"
Browse files Browse the repository at this point in the history
This reverts commit 6cfedc7.

Didn't work with this low on my board.

Conflicts:
	MFRC522.cpp
  • Loading branch information
ljos committed Mar 21, 2014
1 parent ff5a0a7 commit 3420f8a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions MFRC522.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,9 @@ MFRC522::MFRC522(int sad, int reset) {
digitalWrite(_sad, HIGH);

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

}

/**************************************************************************/
Expand Down

0 comments on commit 3420f8a

Please sign in to comment.