{"id":31931275,"url":"https://github.com/patrickbaus/sensordaemon","last_synced_at":"2026-04-20T06:10:37.444Z","repository":{"id":37502621,"uuid":"85256581","full_name":"PatrickBaus/sensorDaemon","owner":"PatrickBaus","description":"An IoT sensor daemon for the Tinkerforge system","archived":false,"fork":false,"pushed_at":"2025-10-06T20:23:56.000Z","size":1707,"stargazers_count":0,"open_issues_count":4,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-10-06T22:26:31.191Z","etag":null,"topics":["iot","mqtt","mqtt-client","tinkerforge"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/PatrickBaus.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2017-03-17T01:12:05.000Z","updated_at":"2025-10-06T20:23:53.000Z","dependencies_parsed_at":"2023-09-28T20:43:55.108Z","dependency_job_id":"60babe20-8e26-4ff6-9b09-cbbf3fb405a2","html_url":"https://github.com/PatrickBaus/sensorDaemon","commit_stats":null,"previous_names":[],"tags_count":34,"template":false,"template_full_name":null,"purl":"pkg:github/PatrickBaus/sensorDaemon","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PatrickBaus%2FsensorDaemon","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PatrickBaus%2FsensorDaemon/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PatrickBaus%2FsensorDaemon/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PatrickBaus%2FsensorDaemon/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/PatrickBaus","download_url":"https://codeload.github.com/PatrickBaus/sensorDaemon/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PatrickBaus%2FsensorDaemon/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279017942,"owners_count":26086213,"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-10-14T02:00:06.444Z","response_time":60,"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":["iot","mqtt","mqtt-client","tinkerforge"],"created_at":"2025-10-14T04:33:26.432Z","updated_at":"2025-10-14T04:33:30.302Z","avatar_url":"https://github.com/PatrickBaus.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![GitHub release](https://img.shields.io/github/release/PatrickBaus/sensorDaemon.svg)](../../releases/latest)\n[![CI workflow](https://img.shields.io/github/actions/workflow/status/PatrickBaus/sensorDaemon/ci.yml?branch=master\u0026label=ci\u0026logo=github)](../../actions?workflow=ci)\n[![code style](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)\n[![License: GPL v3](https://img.shields.io/badge/License-GPL%20v3-blue.svg)](LICENSE)\n[![Docker](https://img.shields.io/badge/docker-%230db7ed.svg?style=flat\u0026logo=docker\u0026logoColor=white)](../../pkgs/container/sensordaemon)\n# LabKraken Sensor Daemon\n`LabKraken` is a logging daemon for lab applications. It can extract data from a number of sources commonly found in\nlaboratories like:\n * [Tinkerforge](https://www.tinkerforge.com/en/shop/bricklets.html) sensors\n * [Labnodes](https://github.com/TU-Darmstadt-APQ/Labnode_PID)\n * SCPI enabled devices via GPIB or Ethernet\n\nThe data is extracted from the devices and published via [MQTT](https://en.wikipedia.org/wiki/MQTT) for further\nprocessing. Used with a datalogger like the [Kraken Logger](https://github.com/PatrickBaus/database_logger) and\na data visualisation frontend like [Grafana](https://grafana.com/grafana/) it allows to precisely monitor labs and\nexperiments in real-time.\n\n`LabKraken` is written in Python using the [asyncio](https://docs.python.org/3/library/asyncio.html) framework and runs on\nboth large scale servers and small [Raspberry Pis](https://www.raspberrypi.com/).\n\n# Setup\n`LabKraken` is best installed via the Docker repository provided with this repository.\n\n## ... via [`docker-compose`](https://github.com/docker/compose)\n\nBasic example `docker-compose.yml` for the `LabKraken`:\n```yaml\nservices:\n  kraken:\n    image: ghcr.io/patrickbaus/sensordaemon:latest\n    container_name: kraken\n    restart: always\n    environment:\n      - SENSORS_DATABASE_HOST=mongodb://foo:bar@database-server:27017\n      - MQTT_HOST=mqtt-broker\n      - NODE_ID=a4777632-3de5-4682-a0a7-3f86d879c74d\n```\n\n## Versioning\nI use [SemVer](http://semver.org/) for versioning. For the versions available, see the [tags](../../tags) available for this repository.\n\n## Documentation\nI use the [Numpydoc](https://numpydoc.readthedocs.io/en/latest/format.html) style for documentation.\n\n## Authors\n* **Patrick Baus** - *Initial work* - [PatrickBaus](https://github.com/PatrickBaus)\n\n## License\nThis project is licensed under the GPL v3 license - see the [LICENSE](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpatrickbaus%2Fsensordaemon","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpatrickbaus%2Fsensordaemon","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpatrickbaus%2Fsensordaemon/lists"}