Skip to content

Commit

Permalink
change reset line transition
Browse files Browse the repository at this point in the history
  • Loading branch information
chabala committed Feb 18, 2022
1 parent cd08178 commit 4a08ed9
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 4a08ed9

Please sign in to comment.