{"id":22859942,"url":"https://github.com/reelyactive/advlib-eep-rps","last_synced_at":"2026-04-24T16:38:38.604Z","repository":{"id":61012157,"uuid":"546677708","full_name":"reelyactive/advlib-eep-rps","owner":"reelyactive","description":"Open source library for decoding EnOcean Equipment Profile (EEP) rocker position switch (RPS) telegrams. We believe in an open Internet of Things.","archived":false,"fork":false,"pushed_at":"2025-11-28T23:51:59.000Z","size":123,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-12-01T01:49:41.233Z","etag":null,"topics":["advlib","enocean","enocean-alliance","node-js","packet-decoding","pareto-anywhere"],"latest_commit_sha":null,"homepage":"https://www.reelyactive.com/pareto/anywhere/devices/enocean-alliance/","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}},"created_at":"2022-10-06T13:18:54.000Z","updated_at":"2025-11-28T23:52:03.000Z","dependencies_parsed_at":"2025-02-06T12:42:55.839Z","dependency_job_id":"771997b4-4d62-40b4-becd-ba958ac3f99e","html_url":"https://github.com/reelyactive/advlib-eep-rps","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/reelyactive/advlib-eep-rps","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reelyactive%2Fadvlib-eep-rps","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reelyactive%2Fadvlib-eep-rps/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reelyactive%2Fadvlib-eep-rps/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reelyactive%2Fadvlib-eep-rps/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/reelyactive","download_url":"https://codeload.github.com/reelyactive/advlib-eep-rps/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reelyactive%2Fadvlib-eep-rps/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32231335,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-24T13:21:15.438Z","status":"ssl_error","status_checked_at":"2026-04-24T13:21:15.005Z","response_time":64,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["advlib","enocean","enocean-alliance","node-js","packet-decoding","pareto-anywhere"],"created_at":"2024-12-13T09:08:29.945Z","updated_at":"2026-04-24T16:38:38.598Z","avatar_url":"https://github.com/reelyactive.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"advlib-eep-rps\n==============\n\nWireless advertising packet decoding library for EnOcean Equipment Profiles of rocker position switch (RPS) telegrams.  __advlib-eep-rps__ is typically used as a library for [advlib-esp](https://github.com/reelyactive/advlib-esp) which itself is commonly a processor module of the protocol-agnostic [advlib](https://github.com/reelyactive/advlib).\n\n![Overview of advlib-eep-rps](https://reelyactive.github.io/advlib-eep-rps/images/overview.png)\n\n__advlib-eep-rps__ is a lightweight [Node.js package](https://www.npmjs.com/package/advlib-eep-rps) with no dependencies.  See also its sister libraries [advlib-eep-vld](https://github.com/reelyactive/advlib-eep-vld), [advlib-eep-4bs](https://github.com/reelyactive/advlib-eep-4bs) and [advlib-eep-msc](https://github.com/reelyactive/advlib-eep-msc).\n\n\nInstallation\n------------\n\n    npm install advlib-eep-rps\n\n\nHello advlib-eep-rps!\n---------------------\n\n```javascript\nconst advlib = require('advlib-eep-rps');\n\nlet eepType = 'F6-02-02';\nlet telegram = 'f650002e0069b0';\n\nlet processedData = advlib.processRPSTelegram(eepType, telegram);\n\nconsole.log(processedData);\n```\n\nWhich should yield the following console output:\n\n    {\n        isButtonPressed: [ false, false, true, false ]\n    }\n\n\nSupported EnOcean Equipment Profiles\n------------------------------------\n\nThe following EEPs are currently supported by __advlib-eep-rps__.\n\n| EEP      | Profile Name            | /lib file       |\n|:---------|:------------------------|:----------------|\n| F6-02-02 | Rocker Switch, 2-Rocker | rockerswitch.js |\n\nSee [www.reelyactive.com/pareto/anywhere/devices/enocean-alliance/](https://www.reelyactive.com/pareto/anywhere/devices/enocean-alliance/) for a list of all EEPs supported by our [Pareto Anywhere](https://www.reelyactive.com/pareto/anywhere/) open source IoT middleware.\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.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freelyactive%2Fadvlib-eep-rps","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Freelyactive%2Fadvlib-eep-rps","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freelyactive%2Fadvlib-eep-rps/lists"}