From c8ce665680fa7ab7022c10807c84caeb1711c240 Mon Sep 17 00:00:00 2001 From: Julian Vos Date: Tue, 27 Apr 2021 11:51:01 +0200 Subject: [PATCH 1/2] Create README.md --- README.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..602ef79 --- /dev/null +++ b/README.md @@ -0,0 +1,27 @@ +# WeatherStation +Simple weather station-esque program. I was getting tired of my weather station constantly running out of batteries, and it running fast, so I made my own. + +Made for a 480x800 display, have not tested scaling in any way. + +## Install + +### Prerequisites +- Java 8 ([Linux](https://openjdk.java.net/), [Windows](https://adoptopenjdk.net/?variant=openjdk8&jvmVariant=openj9)) + +You can get the latest release from the [releases](https://github.com/Ghoelian/WeatherStation/releases) page. + +### Windows +Simply run the executable. + +### Linux +Make the WeatherStation file executable: +```sh +chmod +x WeatherStation +``` +Then simply run the now executable file: +```sh +./WeatherStation +``` + +## Build +The easiest way to build the project is to use the Processing IDE. Simply load the project into the IDE, and click File->Export Application, then select your desired targets. From f4b72f47ba0fbf2d0adaec54eeebf78514949c27 Mon Sep 17 00:00:00 2001 From: Julian Vos Date: Tue, 27 Apr 2021 11:51:23 +0200 Subject: [PATCH 2/2] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 602ef79..1dc649e 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -# WeatherStation -Simple weather station-esque program. I was getting tired of my weather station constantly running out of batteries, and it running fast, so I made my own. +# Weather Station +Simple weather station-esque program, written in Java with the Processing library. I was getting tired of my weather station constantly running out of batteries, and it running fast, so I made my own. Made for a 480x800 display, have not tested scaling in any way.