From b16b349d17ff0ea2046875a5fe1fff118d7b905b Mon Sep 17 00:00:00 2001 From: Chris Kaczor Date: Sat, 10 Feb 2018 12:07:42 -0500 Subject: [PATCH] Switch to git submodule, add license and initial readme --- .gitignore | 2 ++ .gitmodules | 3 +++ LICENSE.md | 21 +++++++++++++++++++++ OneWireAPI | 1 + README.md | 13 +++++++++++++ WeatherService.csproj | 22 ++++++++++------------ WeatherService.sln | 22 ++++++++++++++++++---- 7 files changed, 68 insertions(+), 16 deletions(-) create mode 100644 .gitmodules create mode 100644 LICENSE.md create mode 160000 OneWireAPI create mode 100644 README.md diff --git a/.gitignore b/.gitignore index abd2844..4d319d2 100644 --- a/.gitignore +++ b/.gitignore @@ -153,3 +153,5 @@ $RECYCLE.BIN/ # Mac desktop service store files .DS_Store + +.vs/ diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..bd42e4f --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "OneWireAPI"] + path = OneWireAPI + url = https://github.com/ckaczor/OneWireAPI.git diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..de8cb70 --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2018 Chris Kaczor + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/OneWireAPI b/OneWireAPI new file mode 160000 index 0000000..4321363 --- /dev/null +++ b/OneWireAPI @@ -0,0 +1 @@ +Subproject commit 43213639e45309c0a2ec783da8de96d85a891e48 diff --git a/README.md b/README.md new file mode 100644 index 0000000..94f7f4d --- /dev/null +++ b/README.md @@ -0,0 +1,13 @@ +# WeatherService + +Service for taking weather readings from an AAG Electronica 1-Wire weather station. + +Unfortunately AAG appears to be out of business so the hardware is no longer available. + +## Authors + +* **Chris Kaczor** - *Initial work* - https://github.com/ckaczor - https://chriskaczor.com + +## License + +This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details. diff --git a/WeatherService.csproj b/WeatherService.csproj index a07341f..5954f81 100644 --- a/WeatherService.csproj +++ b/WeatherService.csproj @@ -103,7 +103,6 @@ - @@ -183,16 +182,6 @@ Settings.Designer.cs - - - {17864d82-457d-4a0a-bc10-1d07f2b3a5d6} - Common - - - {e89d1170-9261-4523-bb6e-a4d08ef80a36} - OneWireAPI - - False @@ -213,7 +202,16 @@ - + + + {17864d82-457d-4a0a-bc10-1d07f2b3a5d6} + Common + + + {e89d1170-9261-4523-bb6e-a4d08ef80a36} + OneWireAPI + +