:mod:`qrio`
===========
.. py:module:: qrio
.. autoapi-nested-parse::
`qrio` module.
Provides the `QRDecoder` object.
.. raw:: html
Available on these boards
- ATMegaZero ESP32-S2
- Adafruit Feather ESP32-S2 TFT
- Adafruit Feather ESP32S2
- Adafruit Feather RP2040
- Adafruit FunHouse
- Adafruit Grand Central M4 Express
- Adafruit ItsyBitsy RP2040
- Adafruit KB2040
- Adafruit Macropad RP2040
- Adafruit MagTag
- Adafruit Metro ESP32S2
- Adafruit QT Py ESP32S2
- Adafruit QT Py RP2040
- Adafruit QT2040 Trinkey
- Arduino Nano RP2040 Connect
- Artisense Reference Design RD00
- BastWiFi
- Challenger NB RP2040 WiFi
- Challenger RP2040 LTE
- Challenger RP2040 WiFi
- CrumpS2
- Cytron Maker Nano RP2040
- Cytron Maker Pi RP2040
- ESP 12k NodeMCU
- EncoderPad RP2040
- Feather ESP32S2 without PSRAM
- FeatherS2
- FeatherS2 Neo
- FeatherS2 PreRelease
- Franzininho WIFI w/Wroom
- Franzininho WIFI w/Wrover
- Gravitech Cucumber M
- Gravitech Cucumber MS
- Gravitech Cucumber R
- Gravitech Cucumber RS
- HMI-DevKit-1.1
- Kaluga 1
- LILYGO TTGO T8 ESP32-S2 w/Display
- MORPHEANS MorphESP-240
- Melopero Shake RP2040
- MicroDev microS2
- Oak Dev Tech BREAD2040
- Oak Dev Tech PixelWing ESP32S2
- Pimoroni Interstate 75
- Pimoroni Keybow 2040
- Pimoroni PGA2040
- Pimoroni Pico LiPo (16MB)
- Pimoroni Pico LiPo (4MB)
- Pimoroni PicoSystem
- Pimoroni Plasma 2040
- Pimoroni Tiny 2040
- PyKey60
- RP2040 Stamp
- Raspberry Pi Pico
- S2Mini
- S2Pico
- Saola 1 w/Wroom
- Saola 1 w/Wrover
- SparkFun MicroMod RP2040 Processor
- SparkFun Pro Micro RP2040
- SparkFun Thing Plus - RP2040
- Targett Module Clip w/Wroom
- Targett Module Clip w/Wrover
- Thingz - Galaxia
- TinyS2
- nanoESP32-S2 w/Wrover
- nanoESP32-S2 w/Wroom
.. py:class:: PixelPolicy
.. py:attribute:: EVERY_BYTE
:annotation: :PixelPolicy
The input buffer to `QRDecoder.decode` consists of greyscale values in every byte
.. py:attribute:: EVEN_BYTES
:annotation: :PixelPolicy
The input buffer to `QRDecoder.decode` consists of greyscale values in positions 0, 2, …, and ignored bytes in positions 1, 3, …. This can decode directly from YUV images where the even bytes hold the Y (luminance) data.
.. py:attribute:: ODD_BYTES
:annotation: :PixelPolicy
The input buffer to `QRDecoder.decode` consists of greyscale values in positions 1, 3, …, and ignored bytes in positions 0, 2, …. This can decode directly from YUV images where the odd bytes hold the Y (luminance) data
.. py:class:: QRDecoder(width: int, height: int)
Construct a QRDecoder object
:param int width: The pixel width of the image to decode
:param int height: The pixel height of the image to decode
.. py:attribute:: width
:annotation: :int
The width of image the decoder expects
.. py:attribute:: height
:annotation: :int
The height of image the decoder expects
.. py:method:: decode(buffer: _typing.ReadableBuffer, pixel_policy: PixelPolicy = PixelPolicy.EVERY_BYTE) -> List[QRInfo]
Decode zero or more QR codes from the given image. The size of the buffer must be at least ``length``×``width`` bytes for `EVERY_BYTE`, and 2×``length``×``width`` bytes for `EVEN_BYTES` or `ODD_BYTES`.
.. py:class:: QRInfo
Information about a decoded QR code
.. py:attribute:: payload
:annotation: :bytes
The content of the QR code
.. py:attribute:: data_type
:annotation: :Union[str, int]
The encoding of the payload as a string (if a standard encoding) or int (if not standard)