MicroPython_PN532/pn532/spi.py

147 lines
5.1 KiB
Python
Raw Permalink Normal View History

2021-01-14 16:45:11 +00:00
# SPDX-FileCopyrightText: 2015-2018 Tony DiCola for Adafruit Industries
2018-08-28 19:36:54 +00:00
#
2021-01-14 16:45:11 +00:00
# SPDX-License-Identifier: MIT
2018-08-28 19:36:54 +00:00
"""
``adafruit_pn532.spi``
====================================================
This module will let you communicate with a PN532 RFID/NFC shield or breakout
using SPI.
* Author(s): Original Raspberry Pi code by Tony DiCola, CircuitPython by ladyada,
refactor by Carter Nelson
"""
import time
from machine import Pin, SPI
from micropython import const
2023-02-09 20:12:59 +00:00
try:
from typing import Optional, Union
2023-02-09 20:12:59 +00:00
except ImportError:
pass
from pn532 import PN532
2022-08-16 22:09:14 +00:00
__version__ = "0.0.0+auto.0"
2018-08-28 19:36:54 +00:00
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_PN532.git"
2020-03-16 20:00:49 +00:00
_SPI_STATREAD = const(0x02)
_SPI_DATAWRITE = const(0x01)
_SPI_DATAREAD = const(0x03)
_SPI_READY = const(0x01)
2018-08-28 19:36:54 +00:00
2023-02-09 20:12:59 +00:00
def reverse_bit(num: int) -> int:
2018-08-28 19:36:54 +00:00
"""Turn an LSB byte to an MSB byte, and vice versa. Used for SPI as
it is LSB for the PN532, but 99% of SPI implementations are MSB only!"""
2019-07-03 19:12:18 +00:00
result = 0
for _ in range(8):
result <<= 1
2020-03-16 20:00:49 +00:00
result += num & 1
2019-07-03 19:12:18 +00:00
num >>= 1
return result
2018-08-28 19:36:54 +00:00
2020-03-16 20:00:49 +00:00
2018-08-28 19:36:54 +00:00
class PN532_SPI(PN532):
"""Driver for the PN532 connected over SPI. Pass in a hardware or bitbang
SPI device & chip select digitalInOut pin. Optional IRQ pin (not used),
reset pin and debugging output."""
2020-03-16 20:00:49 +00:00
2023-02-09 20:12:59 +00:00
def __init__(
self,
spi: SPI,
cs_pin: int,
2023-02-09 20:12:59 +00:00
*,
irq: Optional[int] = None,
reset: Optional[int] = None,
2023-02-09 20:12:59 +00:00
debug: bool = False
) -> None:
2023-03-20 01:08:14 +00:00
"""Create an instance of the PN532 class using SPI
Optional IRQ pin (not used)
2023-03-21 18:49:32 +00:00
:param ~busio.SPI spi: The spi bus the PN532 is connected to.
:param digitalio.DigitalInOut cs: board pin the PN532 chip select line is connected to
:param digitalio.DigitalInOut irq: board pin the PN532 P32 is connected to
:param digitalio.DigitalInOut reset: board pin the PN532 RSTOUT_N is connected to
2023-03-21 18:49:32 +00:00
:param bool debug: if True print additional debug statements. Defaults to False
2023-03-20 01:08:14 +00:00
2023-04-07 19:26:35 +00:00
2023-03-20 01:08:14 +00:00
**Quickstart: Importing and using the device**
2023-03-21 18:49:32 +00:00
Here is an example of using the :class:`PN532_SPI` class.
2023-03-20 01:08:14 +00:00
First you will need to import the libraries to use the sensor
Once this is done you can define your `machine.SPI` object and define your PN532 object
2023-03-21 18:49:32 +00:00
2023-03-20 01:08:14 +00:00
.. code-block:: python
spi = machine.SoftSPI(sck=board.SCK, mosi=board.MOSI, miso=board.MISO)
cs_pin = 23 # probably not 23...
2023-03-20 01:08:14 +00:00
pn532 = PN532_SPI(spi, cs_pin, debug=False)
2023-03-21 18:49:32 +00:00
Now you have access to the attributes and functions of the PN532 RFID/NFC
shield or breakout
2023-03-20 01:08:14 +00:00
.. code-block:: python
uid = pn532.read_passive_target(timeout=0.5)
"""
2018-08-28 19:36:54 +00:00
self.debug = debug
self._spi = spi_device.SPIDevice(spi, cs_pin)
super().__init__(debug=debug, irq=irq, reset=reset)
2018-08-28 19:36:54 +00:00
2023-02-09 20:12:59 +00:00
def _wakeup(self) -> None:
2018-08-28 19:36:54 +00:00
"""Send any special commands/data to wake up PN532"""
if self._reset_pin:
self._reset_pin.value(True)
time.sleep(0.01)
2018-08-28 19:36:54 +00:00
with self._spi as spi:
2020-03-16 20:00:49 +00:00
spi.write(bytearray([0x00])) # pylint: disable=no-member
time.sleep(0.01)
self.low_power = False
2020-09-10 19:42:03 +00:00
self.SAM_configuration() # Put the PN532 back in normal mode
2018-08-28 19:36:54 +00:00
2023-02-09 20:12:59 +00:00
def _wait_ready(self, timeout: float = 1) -> bool:
2018-08-28 19:36:54 +00:00
"""Poll PN532 if status byte is ready, up to `timeout` seconds"""
status_cmd = bytearray([reverse_bit(_SPI_STATREAD), 0x00])
status_response = bytearray([0x00, 0x00])
2018-08-28 19:36:54 +00:00
timestamp = time.monotonic()
with self._spi as spi:
while (time.monotonic() - timestamp) < timeout:
2020-03-16 20:00:49 +00:00
spi.write_readinto(
status_cmd, status_response
) # pylint: disable=no-member
if reverse_bit(status_response[1]) == 0x01: # LSB data is read in MSB
2020-03-16 20:00:49 +00:00
return True # Not busy anymore!
time.sleep(0.01) # pause a bit till we ask again
2018-08-28 19:36:54 +00:00
# We timed out!
return False
2023-02-09 20:12:59 +00:00
def _read_data(self, count: int) -> bytearray:
2018-08-28 19:36:54 +00:00
"""Read a specified count of bytes from the PN532."""
# Build a read request frame.
2020-03-16 20:00:49 +00:00
frame = bytearray(count + 1)
2018-08-28 19:36:54 +00:00
# Add the SPI data read signal byte, but LSB'ify it
frame[0] = reverse_bit(_SPI_DATAREAD)
with self._spi as spi:
2020-03-16 20:00:49 +00:00
spi.write_readinto(frame, frame) # pylint: disable=no-member
2018-08-28 19:36:54 +00:00
for i, val in enumerate(frame):
2020-03-16 20:00:49 +00:00
frame[i] = reverse_bit(val) # turn LSB data to MSB
if self.debug:
print("Reading: ", [hex(i) for i in frame[1:]])
2018-08-28 19:36:54 +00:00
return frame[1:]
def _write_data(self, framebytes: Union[bytes, bytearray]) -> None:
2018-08-28 19:36:54 +00:00
"""Write a specified count of bytes to the PN532"""
# start by making a frame with data write in front,
# then rest of bytes, and LSBify it
rev_frame = [reverse_bit(x) for x in bytes([_SPI_DATAWRITE]) + framebytes]
if self.debug:
print("Writing: ", [hex(i) for i in rev_frame])
2018-08-28 19:36:54 +00:00
with self._spi as spi:
2020-03-16 20:00:49 +00:00
spi.write(bytes(rev_frame)) # pylint: disable=no-member