Qrcode is not interpretable
Hi everybody,
I'm trying to implement into a custom board, the dynamic Qrcode generation algorithm.
I'm using touchgfx 4.23.0, an SPI display with partial buffer strategy.
I would like to draw the string "https://support.touchgfx.com" . Display seem to draw it correctly but when I'm try to read it using my phone, this one is not readle. it seems not valid..
I'm using the following initialization sequence:
void Screen_QrCodeView::setupScreen()
{
Screen_QrCodeViewBase::setupScreen();
QR *code;
sprintf( string, "https://support.touchgfx.com");
code = new QR( string );
qrCode.setXY(10,10);
qrCode.setQRCode(code);
qrCode.setScale(8);
add(qrCode);
}
display screen
Qrcode detail
I don't understand the reason. If I change the size of QrCode using qrCode.setScale the result is the same.
Is it possibile to change the resoltuion of the QrCode? Is the QrCode resolution too poor respect the modern APP algorithm?
Does someone ahs the same issue? Please, Can someone try to draw the string https://support.touchgfx.com and share the picture for a comparison, ?
What can I check in the project?
Thanks to all

