// Copyright 2019 Espressif Systems (Shanghai) PTE LTD // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #include #include #include "qrcodegen.h" #define MAX_QRCODE_VERSION 5 static const char *lt[] = { /* 0 */ " ", /* 1 */ "\u2580 ", /* 2 */ " \u2580", /* 3 */ "\u2580\u2580", /* 4 */ "\u2584 ", /* 5 */ "\u2588 ", /* 6 */ "\u2584\u2580", /* 7 */ "\u2588\u2580", /* 8 */ " \u2584", /* 9 */ "\u2580\u2584", /* 10 */ " \u2588", /* 11 */ "\u2580\u2588", /* 12 */ "\u2584\u2584", /* 13 */ "\u2588\u2584", /* 14 */ "\u2584\u2588", /* 15 */ "\u2588\u2588", }; void print_qr_char(unsigned char n) { printf("%s", lt[n]); } extern void print_qr_char(unsigned char); static void printQr(const uint8_t qrcode[]) { int size = qrcodegen_getSize(qrcode); int border = 2; unsigned char num = 0; for (int y = -border; y < size + border; y+=2) { for (int x = -border; x < size + border; x+=2) { num = 0; if (qrcodegen_getModule(qrcode, x, y)) { num |= 1 << 0; } if ((x < size + border) && qrcodegen_getModule(qrcode, x+1, y)) { num |= 1 << 1; } if ((y < size + border) && qrcodegen_getModule(qrcode, x, y+1)) { num |= 1 << 2; } if ((x < size + border) && (y < size + border) && qrcodegen_getModule(qrcode, x+1, y+1)) { num |= 1 << 3; } print_qr_char(num); } printf("\n"); } printf("\n"); } esp_err_t qrcode_display(const char *text) { enum qrcodegen_Ecc errCorLvl = qrcodegen_Ecc_LOW; uint8_t *qrcode, *tempBuffer; esp_err_t err = ESP_FAIL; qrcode = calloc(1, qrcodegen_BUFFER_LEN_FOR_VERSION(MAX_QRCODE_VERSION)); if (!qrcode) return ESP_ERR_NO_MEM; tempBuffer = calloc(1, qrcodegen_BUFFER_LEN_FOR_VERSION(MAX_QRCODE_VERSION)); if (!tempBuffer) { free(qrcode); return ESP_ERR_NO_MEM; } // Make and print the QR Code symbol bool ok = qrcodegen_encodeText(text, tempBuffer, qrcode, errCorLvl, qrcodegen_VERSION_MIN, MAX_QRCODE_VERSION, qrcodegen_Mask_AUTO, true); if (ok) { printQr(qrcode); err = ESP_OK; } free(qrcode); free(tempBuffer); return err; }