{"id":19125816,"url":"https://github.com/stepansnigirev/mpy-qrencode","last_synced_at":"2026-06-20T13:31:30.141Z","repository":{"id":78137955,"uuid":"201468945","full_name":"stepansnigirev/mpy-qrencode","owner":"stepansnigirev","description":"micropython module to generate qr codes","archived":false,"fork":false,"pushed_at":"2019-08-09T13:06:30.000Z","size":12,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-22T14:49:43.923Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/stepansnigirev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-08-09T13:05:14.000Z","updated_at":"2019-08-09T13:06:32.000Z","dependencies_parsed_at":"2023-02-28T06:01:17.225Z","dependency_job_id":null,"html_url":"https://github.com/stepansnigirev/mpy-qrencode","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/stepansnigirev/mpy-qrencode","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stepansnigirev%2Fmpy-qrencode","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stepansnigirev%2Fmpy-qrencode/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stepansnigirev%2Fmpy-qrencode/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stepansnigirev%2Fmpy-qrencode/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/stepansnigirev","download_url":"https://codeload.github.com/stepansnigirev/mpy-qrencode/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stepansnigirev%2Fmpy-qrencode/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34572424,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-20T02:00:06.407Z","response_time":98,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-09T05:36:43.951Z","updated_at":"2026-06-20T13:31:30.120Z","avatar_url":"https://github.com/stepansnigirev.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# mpy-qrencode\n\nA micropython binding to qr code generation.\n\nAdd `#define MODULE_QRENCODE_ENABLED (1)` in your `mpconfigport.h`.\n\nExample:\n\n```py\nimport m5stack\nfrom m5stack import LCD, fonts, color565\nimport qrencode\n\nlcd = LCD()\nlcd.set_color(color565(0,50,250), color565(255,255,255)) # text color, background color\nlcd.erase()\n\ndef run(x0=0, y0=0, data=\"some text here\"):\n\ts = qrencode.make(data).decode('utf-8')\n\tarr = s.split('\\n')\n\ty = y0\n\tcolor = color565(0,0,0)\n\tfor l in arr:\n\t\ty = y + 1\n\t\tx = x0\n\t\tfor b in l:\n\t\t\tx = x + 1\n\t\t\tif b == '\\x01':\n\t\t\t\tlcd.pixel(x,y,color)\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstepansnigirev%2Fmpy-qrencode","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstepansnigirev%2Fmpy-qrencode","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstepansnigirev%2Fmpy-qrencode/lists"}