Skip to content

Commit 2628c4a

Browse files
committed
changes after local build of RTD and review
1 parent 1859ca7 commit 2628c4a

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

adafruit_pn532/adafruit_pn532.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828

2929
import time
3030
from digitalio import Direction
31-
3231
from micropython import const
3332

3433
try:
@@ -164,7 +163,7 @@ def __init__(
164163
*,
165164
debug: bool = False,
166165
irq: Optional[DigitalInOut] = None,
167-
reset: Optional[DigitalInOut] = None
166+
reset: Optional[DigitalInOut] = None,
168167
) -> None:
169168
"""Create an instance of the PN532 class"""
170169
self.low_power = True

adafruit_pn532/i2c.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ def __init__(
5252
5353
:param ~busio.I2C i2c: The I2C bus the PN532 is connected to.
5454
:param int address: The I2C device address. Defaults to :const:`0x24`
55-
:param digitalio.DigitalInOut reset: board pin the PN532 reset is connected to
55+
:param digitalio.DigitalInOut irq: board pin the PN532 IRQ is connected to
56+
:param digitalio.DigitalInOut reset: board pin the PN532 RSTOUT_N is connected to
5657
:param digitalio.DigitalInOut req: board pin the PN532 P32 is connected to
5758
:param bool debug: if True print additional debug statements. Defaults to False
5859

adafruit_pn532/spi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def __init__(
6767
:param ~busio.SPI spi: The spi bus the PN532 is connected to.
6868
:param digitalio.DigitalInOut cs: board pin the PN532 chip select line is connected to
6969
:param digitalio.DigitalInOut irq: board pin the PN532 P32 is connected to
70-
:param digitalio.DigitalInOut reset: board pin the PN532 reset is connected to
70+
:param digitalio.DigitalInOut reset: board pin the PN532 RSTOUT_N is connected to
7171
:param bool debug: if True print additional debug statements. Defaults to False
7272
7373
**Quickstart: Importing and using the device**

adafruit_pn532/uart.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def __init__(
3939
Optional reset pin and debugging output.
4040
4141
:param ~busio.UART uart: The uart object the PN532 is connected to.
42-
:param digitalio.DigitalInOut reset: board pin the PN532 reset is connected to
42+
:param digitalio.DigitalInOut reset: board pin the PN532 RSTOUT_N is connected to
4343
:param bool debug: if True print additional debug statements. Defaults to False
4444
4545
**Quickstart: Importing and using the device**

0 commit comments

Comments
 (0)