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..a081308 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "Common"] + path = Common + url = https://github.com/ckaczor/Common.git diff --git a/Common b/Common new file mode 160000 index 0000000..81ef8f4 --- /dev/null +++ b/Common @@ -0,0 +1 @@ +Subproject commit 81ef8f451c5ceada2ed704ecaaa789e623a7352d 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.csproj b/OneWireAPI.csproj index 8148c37..ce4dace 100644 --- a/OneWireAPI.csproj +++ b/OneWireAPI.csproj @@ -177,7 +177,7 @@ - + {17864d82-457d-4a0a-bc10-1d07f2b3a5d6} Common diff --git a/OneWireAPI.sln b/OneWireAPI.sln index 9ddfde1..a4bf3ba 100644 --- a/OneWireAPI.sln +++ b/OneWireAPI.sln @@ -1,11 +1,18 @@  Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2013 -VisualStudioVersion = 12.0.30324.0 +# Visual Studio 15 +VisualStudioVersion = 15.0.27130.2027 MinimumVisualStudioVersion = 10.0.40219.1 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OneWireAPI", "OneWireAPI.csproj", "{E89D1170-9261-4523-BB6E-A4D08EF80A36}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Common", "..\Common\Common.csproj", "{17864D82-457D-4A0A-BC10-1D07F2B3A5D6}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Common", "Common\Common.csproj", "{17864D82-457D-4A0A-BC10-1D07F2B3A5D6}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution", "Solution", "{C3BCF266-F41C-43E1-82EE-7C5D291A9C1F}" + ProjectSection(SolutionItems) = preProject + .gitignore = .gitignore + LICENSE.md = LICENSE.md + README.md = README.md + EndProjectSection EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -41,4 +48,7 @@ Global GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {9509A1EC-4604-4ABB-9502-1F1E911AFB6B} + EndGlobalSection EndGlobal diff --git a/README.md b/README.md new file mode 100644 index 0000000..b15c876 --- /dev/null +++ b/README.md @@ -0,0 +1,11 @@ +# OneWireAPI + +Library for accessing a [Dallas Semiconductor 1-Wire](https://www.maximintegrated.com/en/products/digital/one-wire.html) network. + +## 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.