qrduino icon indicating copy to clipboard operation
qrduino copied to clipboard

can you tell me about scalable qrcode?

Open Dechanan1 opened this issue 8 years ago • 3 comments

how was it scalable size? lcd 84x48

Dechanan1 avatar May 26 '16 07:05 Dechanan1

You would simply copy the bits N times for something smaller, e..g 42x42 would use 2x2 Or do you mean something else?

tz1 avatar May 27 '16 16:05 tz1

I mean to make qr code big. sorry.I write a little English.

example link picture... http://i.imgur.com/1HnvokI.jpg

Dechanan1 avatar Jun 07 '16 06:06 Dechanan1

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);
}

}

Dechanan1 avatar Jun 12 '16 19:06 Dechanan1