{"id":35295876,"url":"https://github.com/adams-okode/kamstrup-integration","last_synced_at":"2026-04-09T04:31:32.360Z","repository":{"id":44309317,"uuid":"203204836","full_name":"adams-okode/kamstrup-integration","owner":"adams-okode","description":" Kamstrup MULTICAL 21 ultrasonic water meter with radio module 11","archived":false,"fork":false,"pushed_at":"2022-09-12T17:30:11.000Z","size":58,"stargazers_count":2,"open_issues_count":0,"forks_count":4,"subscribers_count":4,"default_branch":"master","last_synced_at":"2023-03-06T20:49:09.411Z","etag":null,"topics":["decoding-data","iot","kamstrup","radio","sigfox-data"],"latest_commit_sha":null,"homepage":"","language":"Java","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/adams-okode.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}},"created_at":"2019-08-19T15:58:24.000Z","updated_at":"2023-01-05T12:34:19.000Z","dependencies_parsed_at":"2023-01-18T05:00:28.377Z","dependency_job_id":null,"html_url":"https://github.com/adams-okode/kamstrup-integration","commit_stats":null,"previous_names":[],"tags_count":null,"template":null,"template_full_name":null,"purl":"pkg:github/adams-okode/kamstrup-integration","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adams-okode%2Fkamstrup-integration","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adams-okode%2Fkamstrup-integration/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adams-okode%2Fkamstrup-integration/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adams-okode%2Fkamstrup-integration/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/adams-okode","download_url":"https://codeload.github.com/adams-okode/kamstrup-integration/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adams-okode%2Fkamstrup-integration/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31586403,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-08T14:31:17.711Z","status":"online","status_checked_at":"2026-04-09T02:00:06.848Z","response_time":112,"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":["decoding-data","iot","kamstrup","radio","sigfox-data"],"created_at":"2025-12-30T16:21:31.507Z","updated_at":"2026-04-09T04:31:32.347Z","avatar_url":"https://github.com/adams-okode.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Decrypting and decoding Sigfox meter data\n\nThis is an example for decrypting and decoding data from the Kamstrup MULTICAL 21 ultrasonic water\nmeter with radio module 11 , communicating via **Sigfox network**.\nFor reference, please see these documents:\n\n- Datasheet: [http://products.kamstrup.com/download.php?uid=515d4ab](http://products.kamstrup.com/download.php?uid=515d4ab)\n- Technical Description: [http://products.kamstrup.com/download.php?uid=515d4b410de](http://products.kamstrup.com/download.php?uid=515d4b410de)\n\nThe meter specific XML based key file and the Sigfox Data file can be downloaded from your MyKam-\nstrup account https://www.kamstrup.com/en-en/my-kamstrup-login, see\nhttps://www.kamstrup.com/en-en/my-kamstrup-guides for help.\n\n\n\n# Deploy\n\n```bash\nmvn clean install \n```\nThis installs the package to your local repository\n\n```java\n  String key = 'XXXXXXXXXXXXX' ;\n  String meterRx = 'XXXXXXXXXXXXX';\n  Kamstrup kamstrup = new Kamstrup(key, meterRx);\n  kamstrup.packIDDRespones.toString();\n  kamstrup.packageContent.toString();\n  kamstrup.infoCodes.toString();\n```\npackIDDRespones\n```json\n  {\n    \"loggingFrequency\": \"Daily\",\n    \"resultDecimalPlaces\": 3,\n    \"unitStructure\": \"m3|L/hr\",\n    \"packageType\": 1\n  }\n```\n\npackageContent\n```json\n  {\n    \"volume\": 13.433,\n    \"infoCode\": \"3468\",\n    \"minFlow\": null,\n    \"maxFlow\": 0.427,\n    \"minWaterTemperature\": null,\n    \"minAmbientrTemperature\": null,\n    \"maxAmbientTemperature\": null\n  }\n```\n\ninfoCodes\n```json\n  {\n    \"burstDuration\": \"1 - 8  Hrs\",\n    \"leakDuration\": \"169 - 336 Hrs\",\n    \"reverseDuration\": \"0 Hrs\",\n    \"dryDuration\": \"337 - 504 Hrs\",\n    \"burst\": true,\n    \"leak\": false,\n    \"reverse\": false,\n    \"dry\": false\n  }\n```\n-----------------\n\n## How To run \n\nIncase you would like to use the compiled JAR\n\n```bash\n\njava -jar kamstrup-integration-1.0.jar {key} {data}\n\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadams-okode%2Fkamstrup-integration","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fadams-okode%2Fkamstrup-integration","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadams-okode%2Fkamstrup-integration/lists"}