This package implements a QR-code generator for the Motoko programming language.
- DFINITY SDK v0.6.24
Generate a QR-code.
public func encode(
version : { #Version : Nat },
level : { #L; #M; #Q; #H },
mode : { #Alphanumeric; #EightBit; #Kanji; #Numeric },
text : Text
) : ?{ #Matrix : [[Bool]] }
Start a local internet computer.
dfx start
Execute the following commands in another tab.
dfx canister create --all
dfx build
dfx canister install --all
dfx canister call demo encode '(variant{Version = 1}, variant{Q}, variant{Alphanumeric}, "HELLO WORLD")' | sed 's/#/█/g'