Merge remote-tracking branch 'origin/main'
# Conflicts: # adafruit_pn532/i2c.py
This commit is contained in:
commit
b6117ced1f
1 changed files with 2 additions and 1 deletions
|
@ -39,6 +39,7 @@ class PN532_I2C(PN532):
|
||||||
def __init__(
|
def __init__(
|
||||||
self,
|
self,
|
||||||
i2c: I2C,
|
i2c: I2C,
|
||||||
|
address: int = _I2C_ADDRESS,
|
||||||
*,
|
*,
|
||||||
irq: Optional[DigitalInOut] = None,
|
irq: Optional[DigitalInOut] = None,
|
||||||
reset: Optional[DigitalInOut] = None,
|
reset: Optional[DigitalInOut] = None,
|
||||||
|
@ -51,7 +52,7 @@ class PN532_I2C(PN532):
|
||||||
"""
|
"""
|
||||||
self.debug = debug
|
self.debug = debug
|
||||||
self._req = req
|
self._req = req
|
||||||
self._i2c = i2c_device.I2CDevice(i2c, _I2C_ADDRESS)
|
self._i2c = i2c_device.I2CDevice(i2c, address)
|
||||||
super().__init__(debug=debug, irq=irq, reset=reset)
|
super().__init__(debug=debug, irq=irq, reset=reset)
|
||||||
|
|
||||||
def _wakeup(self) -> None:
|
def _wakeup(self) -> None:
|
||||||
|
|
Loading…
Reference in a new issue