can you tell me about scalable qrcode?
Dechanan1 opened this issue · 3 comments
Dechanan1 commented
how was it scalable size?
lcd 84x48
tz1 commented
You would simply copy the bits N times for something smaller, e..g 42x42 would use 2x2
Or do you mean something else?
Dechanan1 commented
I mean to make qr code big.
sorry.I write a little English.
example link picture...
http://i.imgur.com/1HnvokI.jpg
Dechanan1 commented
Is there a way of show the QR code at a specific size?
_code show qrcode lcd display_******
strcpy((char *)strinbuf,"test");
qrencode();
for (i = 0; i < 6; i++) {
gotoXY(0, i);
for (j = 0; j < WD; j++) {
data = 0;
for (k = 0; k < 8; k++) {
data |= QRBIT(j, ((i*8)+k)) << k;
}
LcdWrite(LCD_D, data);
}
}