add i2c address
This commit is contained in:
parent
f19d2424c5
commit
13eebfda7e
1 changed files with 4 additions and 2 deletions
|
@ -29,14 +29,16 @@ _I2C_ADDRESS = const(0x24)
|
||||||
class PN532_I2C(PN532):
|
class PN532_I2C(PN532):
|
||||||
"""Driver for the PN532 connected over I2C."""
|
"""Driver for the PN532 connected over I2C."""
|
||||||
|
|
||||||
def __init__(self, i2c, *, irq=None, reset=None, req=None, debug=False):
|
def __init__(
|
||||||
|
self, i2c, address=_I2C_ADDRESS, *, irq=None, reset=None, req=None, debug=False
|
||||||
|
):
|
||||||
"""Create an instance of the PN532 class using I2C. Note that PN532
|
"""Create an instance of the PN532 class using I2C. Note that PN532
|
||||||
uses clock stretching. Optional IRQ pin (not used),
|
uses clock stretching. Optional IRQ pin (not used),
|
||||||
resetp pin and debugging output.
|
resetp pin and debugging output.
|
||||||
"""
|
"""
|
||||||
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):
|
def _wakeup(self):
|
||||||
|
|
Loading…
Reference in a new issue