{"id":26892107,"url":"https://github.com/ksbrwsk/raspberrypi-boot","last_synced_at":"2025-05-12T14:11:38.040Z","repository":{"id":24565157,"uuid":"27972519","full_name":"ksbrwsk/raspberrypi-boot","owner":"ksbrwsk","description":"simple spring boot application running on raspberry pi measuring data via bmp085 sensor","archived":false,"fork":false,"pushed_at":"2025-04-29T04:12:43.000Z","size":1174,"stargazers_count":20,"open_issues_count":3,"forks_count":4,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-05-12T14:11:27.265Z","etag":null,"topics":["gdata","google-sheets-api","java","mqtt","pi4j","pushover","rabbitmq","raspberry-pi","spring-boot"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/ksbrwsk.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.txt","contributing":null,"funding":null,"license":null,"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}},"created_at":"2014-12-13T20:15:09.000Z","updated_at":"2025-04-09T08:32:38.000Z","dependencies_parsed_at":"2023-10-12T17:23:41.762Z","dependency_job_id":"f2f51bf4-80ae-494c-be83-323412991174","html_url":"https://github.com/ksbrwsk/raspberrypi-boot","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ksbrwsk%2Fraspberrypi-boot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ksbrwsk%2Fraspberrypi-boot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ksbrwsk%2Fraspberrypi-boot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ksbrwsk%2Fraspberrypi-boot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ksbrwsk","download_url":"https://codeload.github.com/ksbrwsk/raspberrypi-boot/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253754219,"owners_count":21958842,"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":["gdata","google-sheets-api","java","mqtt","pi4j","pushover","rabbitmq","raspberry-pi","spring-boot"],"created_at":"2025-03-31T22:49:11.395Z","updated_at":"2025-05-12T14:11:38.020Z","avatar_url":"https://github.com/ksbrwsk.png","language":"JavaScript","readme":"# Simple Spring Boot application measuring temperature with a BMP085 sensor.\n\nFeatures\n--------\n\n* A [Springboot](http://projects.spring.io/spring-boot/) standalone application measuring temperature and pressure with an BMP085 sensor\n* Measured data is sent via MQTT to a [RabbitMQ](http://www.rabbitmq.com/) server\n* Application is using [Spring-Integration](http://projects.spring.io/spring-boot/) with annotation based configuration\n* A [Springboot](http://projects.spring.io/spring-boot/) web application consuming the MQTT data and relaying it via STOMP\n* pushing the data via Websocket to the clients\n* A [Springboot](http://projects.spring.io/spring-boot/) standalone application consuming the MQTT data and writing it to a Google Spreadsheet\n* A [Springboot](http://projects.spring.io/spring-boot/) standalone application pushing alerts to your smartphone using [Pushover](https://pushover.net/) \n\n\n![CI build](https://github.com/ksbrwsk/raspberrypi-boot/workflows/CI%20build/badge.svg)\n\nPrerequisites\n-------------\n\n**What you need to run the applications:**\n\n* Java 21\n* RabbitMQ (http://www.rabbitmq.com)\n* RaspberryPI with Java 21 installed and wired BMP085 sensor\n* pi4j (http://pi4j.com)\n\nModule description\n------------------\n\n### raspberrypi-boot-bmp085\n\nThis is the application meant to run on Raspberry PI, measuring data via BMP085 sensor.\nIn development mode there is a mock implementation generating random data.\n\nApplication properties can be configured in\n```\nraspberrypi-boot-bmp085/src/main/resources\n```\n\nUse\n\n```\nmvn clean install\n```\nto build the application and\n\n```\njava -jar target/raspberrypi-boot-bmp085-1.4.0-SNAPSHOT.jar --spring.profiles.active=dev\nmvn spring-boot:run -Dspring.profiles.active=dev\n```\n\nto run it on the development machine.\n\n### raspberrypi-boot-server\n\nThis is the web application relaying the MQTT data via stomp and pushing\nit to the clients via Websocket.\n\nApplication properties can be configured in\n```\nraspberrypi-boot-server/src/main/resources\n```\n\nUse\n\n```\nmvn clean install\n```\nto build the application and\n\n```\nmvn springBoot:run -Dspring.profiles.active=dev\n```\n\nto run it.\n\n### raspberrypi-boot-gdata\n\nThis is the application consuming the MQTT data and writing it to a\nGoogle Data Spreadsheet.\nPlease make sure you have an Google Account and downloaded the\nJSON Credentials file as described in [this document](https://developers.google.com/accounts/docs/OAuth2)\n\nApplication properties can be configured in\n```\nraspberrypi-boot-gdata/src/main/resources\n```\n\nUse\n\n```\nmvn clean install\n```\nto build the application and\n\n```\nmvn springBoot:run -Dspring.profiles.active=dev\n```\n\nto run it.\n\n### raspberrypi-boot-pushover\n\nThis is the application sending temperature alerts to your smartphone if\nthe server sends notification event. \n\nApplication properties can be configured in\n```\nraspberrypi-boot-pushover/src/main/resources\n```\n\nUse\n\n```\nmvn clean install\n```\nto build the application and\n\n```\nmvn springBoot:run -Dspring.profiles.active=dev\n```\n\nto run it.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fksbrwsk%2Fraspberrypi-boot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fksbrwsk%2Fraspberrypi-boot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fksbrwsk%2Fraspberrypi-boot/lists"}