From fb34fd73bc64f275ff00c24b64ef11c44457fbec Mon Sep 17 00:00:00 2001 From: zyphlar Date: Sat, 25 Feb 2023 14:14:06 -0800 Subject: [PATCH] Add compilation prerequisites to README I compiled the JAR on the raspi (distributed image) itself and needed to add maven, libpigpio.so.1, and JDK in order to complete it (in addition to pigpio and Java runtime which I'm sure are required for running but preinstalled on the image.) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 14e359e..6a4a154 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ When you add the hub to your configuration via the app, you can change where the 1. After that second restart, you should start seeing data. If you're not getting data in your app, the hub probably was not able to get a wifi connection. You can pull the last 10 lines of the log file and network details from the hub via bluetooth on the hub config page to troubleshoot. # Ok, but I don't like doing things the easy way. -First, you and I will get along just fine. Second, do a reactor build from the root folder: +First, you and I will get along just fine. Second, do a reactor build from the root folder. You may need to install `maven libpigpio-dev default-jdk` or similar depending on your OS if you don't already have them. Then: ``` ~/LanternPowerMonitor$ mvn clean install ```