Skip to content

Commit

Permalink
Merge pull request #52 from chabala/wiznet5k-reset-transition
Browse files Browse the repository at this point in the history
change reset line transition
  • Loading branch information
FoamyGuy authored Feb 21, 2022
2 parents cd08178 + 4a08ed9 commit 7fd3be6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions adafruit_wiznet5k/adafruit_wiznet5k.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,10 +166,10 @@ def __init__(

# reset wiznet module prior to initialization
if reset:
reset.value = True
time.sleep(0.1)
reset.value = False
time.sleep(0.1)
reset.value = True
time.sleep(0.1)

# Buffer for reading params from module
self._pbuff = bytearray(8)
Expand Down

0 comments on commit 7fd3be6

Please sign in to comment.