{"id":19326347,"url":"https://github.com/thisissoon/go-orbitip-nfc","last_synced_at":"2026-05-10T16:44:23.789Z","repository":{"id":57542608,"uuid":"90607039","full_name":"thisissoon/go-orbitip-nfc","owner":"thisissoon","description":"A Go library for running an NFC reader server for Gemini 2000 Orbit IP devices. http://www.gemini2k.com/orbit-ip-poe-nfc-smart-card-reader/","archived":false,"fork":false,"pushed_at":"2017-05-10T09:20:34.000Z","size":18,"stargazers_count":1,"open_issues_count":0,"forks_count":2,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-02-24T06:18:34.925Z","etag":null,"topics":["golang","nfc","orbitip","server"],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/thisissoon.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-05-08T08:56:16.000Z","updated_at":"2019-10-31T11:22:19.000Z","dependencies_parsed_at":"2022-09-26T18:31:17.459Z","dependency_job_id":null,"html_url":"https://github.com/thisissoon/go-orbitip-nfc","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/thisissoon/go-orbitip-nfc","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thisissoon%2Fgo-orbitip-nfc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thisissoon%2Fgo-orbitip-nfc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thisissoon%2Fgo-orbitip-nfc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thisissoon%2Fgo-orbitip-nfc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thisissoon","download_url":"https://codeload.github.com/thisissoon/go-orbitip-nfc/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thisissoon%2Fgo-orbitip-nfc/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264631351,"owners_count":23640947,"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":["golang","nfc","orbitip","server"],"created_at":"2024-11-10T02:13:08.786Z","updated_at":"2026-05-10T16:44:23.716Z","avatar_url":"https://github.com/thisissoon.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Go Orbit IP NFC\n\n[![GoDoc](https://godoc.org/github.com/thisissoon/go-orbitip-nfc?status.svg)](https://godoc.org/github.com/thisissoon/go-orbitip-nfc)\n\nA Go library for running an NFC reader server for Gemini 2000 Orbit IP devices (http://www.gemini2k.com/orbit-ip-poe-nfc-smart-card-reader/).\n\n## Example\n\n``` go\npackage main\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\t\"os\"\n\t\"os/signal\"\n\t\"syscall\"\n\n\torbitip \"github.com/thisissoon/go-orbitip-nfc\"\n)\n\nfunc main() {\n\tsrv := orbitip.New(\n\t\t\":80\",\n\t\torbitip.DefaultRoot,\n\t\torbitip.DefaultExt,\n\t\torbitip.Handlers{\n\t\t\torbitip.PowerUpCmd: func(rv orbitip.ResponseValues, p orbitip.Params) error {\n\t\t\t\tfmt.Println(\"Power Up\")\n\t\t\t\trv.UI(orbitip.UI{RedFlash: true, BuzzerIntermittent: true}, 5, 50)\n\t\t\t\treturn nil\n\t\t\t},\n\t\t\torbitip.CardReadCmd: func(rv orbitip.ResponseValues, p orbitip.Params) error {\n\t\t\t\tfmt.Println(\"Card Read\")\n\t\t\t\trv.UI(orbitip.UI{GreenFlash: true, BuzzerIntermittent: true}, 3, 50)\n\t\t\t\treturn nil\n\t\t\t},\n\t\t\torbitip.PingCmd: func(rv orbitip.ResponseValues, p orbitip.Params) error {\n\t\t\t\tfmt.Println(\"Ping\")\n\t\t\t\treturn nil\n\t\t\t},\n\t\t\torbitip.LevelChangeCmd: func(rv orbitip.ResponseValues, p orbitip.Params) error {\n\t\t\t\tfmt.Println(\"Level Change\", p.Contact1, p.Contact2)\n\t\t\t\treturn nil\n\t\t\t},\n\t\t\torbitip.LevelChangeCmd: func(rv orbitip.ResponseValues, p orbitip.Params) error {\n\t\t\t\tfmt.Println(\"Heart Beat\")\n\t\t\t\treturn nil\n\t\t\t},\n\t\t})\n\tgo srv.ListenAndServe()\n\tdefer srv.Shutdown(context.Background())\n\tC := make(chan os.Signal, 1)\n\tsignal.Notify(C, syscall.SIGINT, syscall.SIGTERM, syscall.SIGQUIT)\n\t\u003c-C\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthisissoon%2Fgo-orbitip-nfc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthisissoon%2Fgo-orbitip-nfc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthisissoon%2Fgo-orbitip-nfc/lists"}