Commit of qrcode encoder and supporting modules.

Includes demo module with basic png and crypto
for a full-cyle demo with a mobile phone.
This commit is contained in:
komone
2011-04-10 23:08:14 -05:00
commit 3939fb66e7
15 changed files with 1612 additions and 0 deletions

9
ebin/qrcode.app Normal file
View File

@ -0,0 +1,9 @@
{application, qrcode,
[{description, "QRCode Encoder"},
{vsn, "1.0.0"},
{modules, [qrcode, qrcode_matrix, qrcode_mask, reedsolomon, gf256, bits, base32]},
{mod, {qrcode, []}},
{registered, []},
{env, []},
{applications, [kernel, stdlib]}
]}.