From cd8992009bc6e5a02cd70d3c5f8dd34e1076cd35 Mon Sep 17 00:00:00 2001 From: Samudera Al Hakam Ralial Date: Fri, 20 Oct 2017 21:28:39 +0700 Subject: [PATCH 1/2] Update README.md --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index dc3540c..bf7ef12 100644 --- a/README.md +++ b/README.md @@ -4,3 +4,11 @@ This is a personal fork of OHM that aims to bridge the readings of various OHM s Sensor access provided by OpenHardwareMonitor Library: https://github.com/openhardwaremonitor/openhardwaremonitor Cancelled using fancy gauges as it will affect performance, using text labels instead. Probably next time around. + +## Repo Organization + +The repo is divided into two parts: +- The server (ohm-server folder) which is built with C# .NET 4.0 on Visual Studio 2017 (you can always import to earlier versions by the .sln) +- The client (ohm-client-xxx folders) where xxx denotes the hardware platform on which it's built upon (currently only arduino-avr, but others like arduino-esp and rpi are planned for) + +Each client type has its own Readme so be sure to check inside. PCB design source are in "pcb" (made with KiCAD) and source codes are in "src". From acc39bc46e286c5e8049b523bf15543c756954c8 Mon Sep 17 00:00:00 2001 From: Samudera Al Hakam Ralial Date: Fri, 20 Oct 2017 22:30:54 +0700 Subject: [PATCH 2/2] reorganize client sub-repo --- ohm-client-arduino/README.md | 2 ++ ohm-client-arduino/{ => src}/ohm-client-arduino.ino | 0 2 files changed, 2 insertions(+) create mode 100644 ohm-client-arduino/README.md rename ohm-client-arduino/{ => src}/ohm-client-arduino.ino (100%) diff --git a/ohm-client-arduino/README.md b/ohm-client-arduino/README.md new file mode 100644 index 0000000..5e7f089 --- /dev/null +++ b/ohm-client-arduino/README.md @@ -0,0 +1,2 @@ +# OpenHardwareMonitor Client - Arduino + diff --git a/ohm-client-arduino/ohm-client-arduino.ino b/ohm-client-arduino/src/ohm-client-arduino.ino similarity index 100% rename from ohm-client-arduino/ohm-client-arduino.ino rename to ohm-client-arduino/src/ohm-client-arduino.ino