{"id":22859981,"url":"https://github.com/reelyactive/barnowl-rfcontrols","last_synced_at":"2025-08-01T18:14:09.810Z","repository":{"id":45663387,"uuid":"502382286","full_name":"reelyactive/barnowl-rfcontrols","owner":"reelyactive","description":"Collect ambient RAIN RFID packets from RF Controls overhead RTLS smart antennas. We believe in an open Internet of Things.","archived":false,"fork":false,"pushed_at":"2025-05-08T15:10:17.000Z","size":163,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-07-11T15:48:16.244Z","etag":null,"topics":["pareto-anywhere","raddec","rain-rfid","rf-controls","rtls"],"latest_commit_sha":null,"homepage":"https://www.reelyactive.com/pareto/anywhere/infrastructure/rfcontrols/","language":"JavaScript","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/reelyactive.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2022-06-11T15:16:05.000Z","updated_at":"2025-05-17T19:33:46.000Z","dependencies_parsed_at":"2025-06-10T09:05:09.091Z","dependency_job_id":"f96cd367-5a8e-4780-af71-f0680760057e","html_url":"https://github.com/reelyactive/barnowl-rfcontrols","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/reelyactive/barnowl-rfcontrols","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reelyactive%2Fbarnowl-rfcontrols","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reelyactive%2Fbarnowl-rfcontrols/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reelyactive%2Fbarnowl-rfcontrols/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reelyactive%2Fbarnowl-rfcontrols/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/reelyactive","download_url":"https://codeload.github.com/reelyactive/barnowl-rfcontrols/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reelyactive%2Fbarnowl-rfcontrols/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268273263,"owners_count":24223792,"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","status":"online","status_checked_at":"2025-08-01T02:00:08.611Z","response_time":67,"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":["pareto-anywhere","raddec","rain-rfid","rf-controls","rtls"],"created_at":"2024-12-13T09:08:35.531Z","updated_at":"2025-08-01T18:14:09.781Z","avatar_url":"https://github.com/reelyactive.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"barnowl-rfcontrols\n==================\n\n__barnowl-rfcontrols__ converts RAIN RFID decodings from [RF Controls](https://rf-controls.com/) smart antennas \u0026 RFC OS into standard developer-friendly JSON that is vendor/technology/application-agnostic.\n\n![Overview of barnowl-rfcontrols](https://reelyactive.github.io/barnowl-rfcontrols/images/overview.png)\n\n__barnowl-rfcontrols__ is a lightweight [Node.js package](https://www.npmjs.com/package/barnowl-rfcontrols) that can run on resource-constrained edge devices as well as on powerful cloud servers and anything in between.  It is included in reelyActive's [Pareto Anywhere](https://www.reelyactive.com/pareto/anywhere/) open source middleware suite, and can just as easily be run standalone behind a [barnowl](https://github.com/reelyactive/barnowl) instance, as detailed in the code examples below.\n\n\nQuick Start\n-----------\n\nClone this repository, install package dependencies with `npm install`, and then from the root folder run at any time:\n\n    npm start\n\n__barnowl-rfcontrols__ will attempt to establish a STOMP over WebSockets connection with an RFC OS instance running on the same machine (using the default auth credentials) and attempt to retrieve the regionIds via the RFC OS instance's REST API, to which it will subscribe.  The processed [raddec](https://github.com/reelyactive/raddec/) data from any tag reads will be printed to the console.\n\n\nHello barnowl-rfcontrols!\n-------------------------\n\n```javascript\nconst BarnowlRfControls = require('barnowl-rfcontrols');\n\nlet barnowl = new BarnowlRfControls();\n\nbarnowl.addListener(BarnowlRfControls.TestListener);\n\nbarnowl.on('raddec', function(raddec) {\n  console.log(raddec);\n});\n```\n\nAs output you should see a stream of [raddec](https://github.com/reelyactive/raddec/) objects similar to the following:\n\n```javascript\n{\n  transmitterId: '1ab00000000000000000a003',\n  transmitterIdType: 4,\n  receiverId: 'b797d495c7c94558a77b00a8059fa0b5',\n  receiverIdType: 5,\n  rssi: -80,\n  numberOfDecodings: 1,\n  numberOfReceivers: 1,\n  timestamp: 1658516050829,\n  position: [ 0, 0, 0 ]\n}\n```\n\n\nSupported Listener Interfaces\n-----------------------------\n\nThe following listener interfaces are supported.\n\n### Websocket\n\n```javascript\nlet options = {\n    url: \"ws://localhost:61613/websockets/messaging\",\n    username: \"admin\",\n    password: \"admin\",\n    regionIds: [],\n    isDebug: false\n};\nbarnowl.addListener(BarnowlRfControls.WsListener, options);\n```\n\nIf no regionIds are explicitly provided, __barnowl-rfcontrols__ will attempt to automatically retrieve all region IDs from RFC OS via the REST API.\n\n### Test\n\nProvides simulated tagBlinkLite messages for testing purposes.\n\n```javascript\nbarnowl.addListener(BarnowlRfControls.TestListener, {});\n```\n\n\nContributing\n------------\n\nDiscover [how to contribute](CONTRIBUTING.md) to this open source project which upholds a standard [code of conduct](CODE_OF_CONDUCT.md).\n\n\nSecurity\n--------\n\nConsult our [security policy](SECURITY.md) for best practices using this open source software and to report vulnerabilities.\n\n\nLicense\n-------\n\nMIT License\n\nCopyright (c) 2022-2025 [reelyActive](https://www.reelyactive.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR \nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, \nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE \nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER \nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, \nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN \nTHE SOFTWARE.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freelyactive%2Fbarnowl-rfcontrols","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Freelyactive%2Fbarnowl-rfcontrols","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freelyactive%2Fbarnowl-rfcontrols/lists"}