Skip to content

Repackage of QRCode generation library for ESP-OPEN-RTOS

License

Notifications You must be signed in to change notification settings

maximkulkin/esp-qrcode

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

esp-qrcode

Library for ESP-OPEN-RTOS for QR code generation.

char myData[] = "http://example.com";

QRCode qrcode;

uint8_t *qrcodeBytes = malloc(qrcode_getBufferSize(QRCODE_VERSION));
qrcode_initText(&qrcode, qrcodeBytes, QRCODE_VERSION, ECC_MEDIUM, myData);

qrcode_print(&qrcode);  // print on console

free(qrcodeBytes);

License

MIT licensed. See the bundled LICENSE file for more details.

About

Repackage of QRCode generation library for ESP-OPEN-RTOS

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages