{"id":13802029,"url":"https://github.com/membermatters/urdm6300","last_synced_at":"2025-05-13T12:32:18.765Z","repository":{"id":105148645,"uuid":"405993631","full_name":"membermatters/urdm6300","owner":"membermatters","description":"A micropython driver for the popular RDM6300 RFID card reader.","archived":false,"fork":false,"pushed_at":"2021-09-13T14:37:27.000Z","size":5,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2024-04-22T12:33:28.794Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","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/membermatters.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}},"created_at":"2021-09-13T13:53:26.000Z","updated_at":"2023-03-07T03:14:05.000Z","dependencies_parsed_at":"2023-04-11T04:34:16.399Z","dependency_job_id":null,"html_url":"https://github.com/membermatters/urdm6300","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/membermatters%2Furdm6300","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/membermatters%2Furdm6300/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/membermatters%2Furdm6300/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/membermatters%2Furdm6300/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/membermatters","download_url":"https://codeload.github.com/membermatters/urdm6300/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":225217938,"owners_count":17439712,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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-08-04T00:01:33.633Z","updated_at":"2025-05-13T12:32:18.754Z","avatar_url":"https://github.com/membermatters.png","language":"Python","funding_links":[],"categories":["Libraries"],"sub_categories":["Communications"],"readme":"# urdm6300\n\nurdm6300 is a simple micro python driver / library that allows you to read RFID cards from an attached RDM6300 board. Several suppliers manufacture these boards, including seeed studio and various Aliexpress sellers.\n\n# Installation\n\nSimply download the `urdm6300` folder and upload it to your micro python board. You can download this entire repository [here](https://github.com/membermatters/urdm6300/archive/refs/heads/main.zip).\n\n# Examples\n\nUsing the default UART config (`machine.UART(1, baudrate=9600, timeout=2, timeout_char=10, tx=19, rx=18)`).\n\n```python\nfrom urdm6300 import Rdm6300\n\nrfid_reader = Rfid()\n\n# note that this is not blocking and needs to be called as often as possible to check for new card scans\ncard_id = rfid_reader.read_card()\n```\n\nYou can also specify your own UART object if you'd like:\n\n```python\nfrom urdm6300 import Rdm6300\nimport machine\n\nuart = machine.UART(1, baudrate=9600)\nrfid_reader = Rfid(uart)\n\n# note that this is not blocking and needs to be called as often as possible to check for new card scans\ncard_id = rfid_reader.read_card()\n```\n\nYou can also add this repo as a git sub module to your project to make keeping it up to date easier.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmembermatters%2Furdm6300","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmembermatters%2Furdm6300","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmembermatters%2Furdm6300/lists"}