pimoroni / pimoroni-pico

Libraries and examples to support Pimoroni Pico add-ons in C++ and MicroPython.
https://shop.pimoroni.com/collections/pico
MIT License
1.33k stars 499 forks source link

Where can I find hte api definition for the qrcode that is used here? #535

Open MarcKarasek opened 2 years ago

MarcKarasek commented 2 years ago

I have googled with no luck in finding micropython (or python) api docs for the qrcode library.

Gadgetoid commented 6 months ago

I ported the QRCode library (https://github.com/nayuki/QR-Code-generator) to MicroPython and maintain it here: https://github.com/pimoroni/QR-Code-generator/tree/micropython/edge

There are some MicroPython stubs here detailing the API: https://github.com/pimoroni/pimoroni-pico-stubs/blob/main/pimoroni_pico-stubs/qrcode/__init__.pyi

Beyond what's shown in the examples, it doesn't really do anything much since we only implement a very basic, text-only subset of the libraries features.