ricmoo/QRCode

Not scan qr code image

Opened this issue · 0 comments

i can't scan qr
img_v3_02dn_87107f17-aaed-4e16-9c37-752a85c533hu
tft.fillScreen(TFT_WHITE);
QRCode qrcode;
uint8_t qrcodeData[qrcode_getBufferSize(3)];
qrcode_initText(&qrcode, qrcodeData, 3, 0, "00020101021138530010A0000007270123000697044101099270995700208QRIBFTTA53037045802VN6304FABE");
uint8_t qrSize = 8;
uint16_t qrPixelSize = qrcode.size * qrSize;
uint8_t qrStartX = (320 - qrPixelSize - 12) / 2;
uint8_t qrStartY = 80;
for (uint8_t y = 0; y < qrcode.size; y++)
{
for (uint8_t x = 0; x < qrcode.size; x++)
{
if (qrcode_getModule(&qrcode, x, y))
{
tft.fillRect(x * qrSize + qrStartX, y * qrSize + qrStartY, qrSize, qrSize, TFT_BLACK);
}
else
{
tft.fillRect(x * qrSize + qrStartX, y * qrSize + qrStartY, qrSize, qrSize, TFT_WHITE);
}
}
}