├── .gitignore ├── .vs ├── GitRepos │ └── v15 │ │ └── .suo ├── ProjectSettings.json ├── VSWorkspaceState.json └── slnx.sqlite ├── BlynkLibrary.Standard ├── Blynk.cs ├── BlynkArtifacts.cs ├── BlynkEnums.cs └── BlynkLibrary.Standard.csproj ├── BlynkLibrary ├── BlynkLibrary.csproj ├── Properties │ ├── AssemblyInfo.cs │ └── BlynkLibrary.rd.xml ├── bin │ ├── ARM │ │ └── Debug │ │ │ ├── BlynkLibrary.dll │ │ │ ├── BlynkLibrary.pdb │ │ │ └── BlynkLibrary.pri │ ├── Debug │ │ ├── BlynkLibrary.dll │ │ ├── BlynkLibrary.pdb │ │ └── BlynkLibrary.pri │ └── x64 │ │ └── DebugLocal │ │ ├── BlynkLibrary.dll │ │ ├── BlynkLibrary.pdb │ │ └── BlynkLibrary.pri └── obj │ ├── ARM │ ├── Debug │ │ ├── BlynkLibrary.csproj.FileListAbsolute.txt │ │ ├── BlynkLibrary.csprojResolveAssemblyReference.cache │ │ ├── BlynkLibrary.dll │ │ ├── BlynkLibrary.pdb │ │ ├── CoreCompileInputs.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── MultipleQualifiersPerDimensionFound.txt │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ ├── embed.resfiles │ │ ├── embed.resfiles.intermediate │ │ ├── layout.resfiles │ │ ├── layout.resfiles.intermediate │ │ ├── pri.resfiles │ │ ├── pri.resfiles.intermediate │ │ ├── priconfig.xml │ │ ├── priconfig.xml.intermediate │ │ ├── qualifiers.txt │ │ ├── qualifiers.txt.intermediate │ │ ├── resources.resfiles │ │ └── resources.resfiles.intermediate │ ├── DebugLocal │ │ ├── CoreCompileInputs.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ └── Release │ │ └── CoreCompileInputs.cache │ ├── BlynkLibrary.csproj.nuget.g.props │ ├── BlynkLibrary.csproj.nuget.g.targets │ ├── Debug │ ├── BlynkLibrary.csproj.FileListAbsolute.txt │ ├── BlynkLibrary.csprojResolveAssemblyReference.cache │ ├── BlynkLibrary.dll │ ├── BlynkLibrary.pdb │ ├── CoreCompileInputs.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── MultipleQualifiersPerDimensionFound.txt │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ ├── embed.resfiles │ ├── embed.resfiles.intermediate │ ├── layout.resfiles │ ├── layout.resfiles.intermediate │ ├── pri.resfiles │ ├── pri.resfiles.intermediate │ ├── priconfig.xml │ ├── priconfig.xml.intermediate │ ├── qualifiers.txt │ ├── qualifiers.txt.intermediate │ ├── resources.resfiles │ └── resources.resfiles.intermediate │ ├── DebugLocal │ └── CoreCompileInputs.cache │ ├── Release │ └── CoreCompileInputs.cache │ ├── project.assets.json │ ├── x64 │ ├── Debug │ │ ├── CoreCompileInputs.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ ├── DebugLocal │ │ ├── BlynkLibrary.csproj.FileListAbsolute.txt │ │ ├── BlynkLibrary.csprojResolveAssemblyReference.cache │ │ ├── BlynkLibrary.dll │ │ ├── BlynkLibrary.pdb │ │ ├── CoreCompileInputs.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── MultipleQualifiersPerDimensionFound.txt │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ ├── embed.resfiles │ │ ├── embed.resfiles.intermediate │ │ ├── layout.resfiles │ │ ├── layout.resfiles.intermediate │ │ ├── pri.resfiles │ │ ├── pri.resfiles.intermediate │ │ ├── priconfig.xml │ │ ├── priconfig.xml.intermediate │ │ ├── qualifiers.txt │ │ ├── qualifiers.txt.intermediate │ │ ├── resources.resfiles │ │ └── resources.resfiles.intermediate │ └── Release │ │ └── CoreCompileInputs.cache │ └── x86 │ ├── Debug │ └── CoreCompileInputs.cache │ ├── DebugLocal │ └── CoreCompileInputs.cache │ └── Release │ └── CoreCompileInputs.cache ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/.gitignore -------------------------------------------------------------------------------- /.vs/GitRepos/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/.vs/GitRepos/v15/.suo -------------------------------------------------------------------------------- /.vs/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CurrentProjectSetting": null 3 | } -------------------------------------------------------------------------------- /.vs/VSWorkspaceState.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/.vs/VSWorkspaceState.json -------------------------------------------------------------------------------- /.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/.vs/slnx.sqlite -------------------------------------------------------------------------------- /BlynkLibrary.Standard/Blynk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary.Standard/Blynk.cs -------------------------------------------------------------------------------- /BlynkLibrary.Standard/BlynkArtifacts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary.Standard/BlynkArtifacts.cs -------------------------------------------------------------------------------- /BlynkLibrary.Standard/BlynkEnums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary.Standard/BlynkEnums.cs -------------------------------------------------------------------------------- /BlynkLibrary.Standard/BlynkLibrary.Standard.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary.Standard/BlynkLibrary.Standard.csproj -------------------------------------------------------------------------------- /BlynkLibrary/BlynkLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary/BlynkLibrary.csproj -------------------------------------------------------------------------------- /BlynkLibrary/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BlynkLibrary/Properties/BlynkLibrary.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary/Properties/BlynkLibrary.rd.xml -------------------------------------------------------------------------------- /BlynkLibrary/bin/ARM/Debug/BlynkLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary/bin/ARM/Debug/BlynkLibrary.dll -------------------------------------------------------------------------------- /BlynkLibrary/bin/ARM/Debug/BlynkLibrary.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary/bin/ARM/Debug/BlynkLibrary.pdb -------------------------------------------------------------------------------- /BlynkLibrary/bin/ARM/Debug/BlynkLibrary.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary/bin/ARM/Debug/BlynkLibrary.pri -------------------------------------------------------------------------------- /BlynkLibrary/bin/Debug/BlynkLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary/bin/Debug/BlynkLibrary.dll -------------------------------------------------------------------------------- /BlynkLibrary/bin/Debug/BlynkLibrary.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary/bin/Debug/BlynkLibrary.pdb -------------------------------------------------------------------------------- /BlynkLibrary/bin/Debug/BlynkLibrary.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary/bin/Debug/BlynkLibrary.pri -------------------------------------------------------------------------------- /BlynkLibrary/bin/x64/DebugLocal/BlynkLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary/bin/x64/DebugLocal/BlynkLibrary.dll -------------------------------------------------------------------------------- /BlynkLibrary/bin/x64/DebugLocal/BlynkLibrary.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary/bin/x64/DebugLocal/BlynkLibrary.pdb -------------------------------------------------------------------------------- /BlynkLibrary/bin/x64/DebugLocal/BlynkLibrary.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary/bin/x64/DebugLocal/BlynkLibrary.pri -------------------------------------------------------------------------------- /BlynkLibrary/obj/ARM/Debug/BlynkLibrary.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary/obj/ARM/Debug/BlynkLibrary.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /BlynkLibrary/obj/ARM/Debug/BlynkLibrary.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary/obj/ARM/Debug/BlynkLibrary.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /BlynkLibrary/obj/ARM/Debug/BlynkLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary/obj/ARM/Debug/BlynkLibrary.dll -------------------------------------------------------------------------------- /BlynkLibrary/obj/ARM/Debug/BlynkLibrary.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary/obj/ARM/Debug/BlynkLibrary.pdb -------------------------------------------------------------------------------- /BlynkLibrary/obj/ARM/Debug/CoreCompileInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary/obj/ARM/Debug/CoreCompileInputs.cache -------------------------------------------------------------------------------- /BlynkLibrary/obj/ARM/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary/obj/ARM/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /BlynkLibrary/obj/ARM/Debug/MultipleQualifiersPerDimensionFound.txt: -------------------------------------------------------------------------------- 1 | False -------------------------------------------------------------------------------- /BlynkLibrary/obj/ARM/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlynkLibrary/obj/ARM/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlynkLibrary/obj/ARM/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlynkLibrary/obj/ARM/Debug/embed.resfiles: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlynkLibrary/obj/ARM/Debug/embed.resfiles.intermediate: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlynkLibrary/obj/ARM/Debug/layout.resfiles: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlynkLibrary/obj/ARM/Debug/layout.resfiles.intermediate: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlynkLibrary/obj/ARM/Debug/pri.resfiles: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlynkLibrary/obj/ARM/Debug/pri.resfiles.intermediate: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlynkLibrary/obj/ARM/Debug/priconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary/obj/ARM/Debug/priconfig.xml -------------------------------------------------------------------------------- /BlynkLibrary/obj/ARM/Debug/priconfig.xml.intermediate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary/obj/ARM/Debug/priconfig.xml.intermediate -------------------------------------------------------------------------------- /BlynkLibrary/obj/ARM/Debug/qualifiers.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlynkLibrary/obj/ARM/Debug/qualifiers.txt.intermediate: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlynkLibrary/obj/ARM/Debug/resources.resfiles: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlynkLibrary/obj/ARM/Debug/resources.resfiles.intermediate: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlynkLibrary/obj/ARM/DebugLocal/CoreCompileInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary/obj/ARM/DebugLocal/CoreCompileInputs.cache -------------------------------------------------------------------------------- /BlynkLibrary/obj/ARM/DebugLocal/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary/obj/ARM/DebugLocal/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /BlynkLibrary/obj/ARM/DebugLocal/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlynkLibrary/obj/ARM/DebugLocal/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlynkLibrary/obj/ARM/DebugLocal/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlynkLibrary/obj/ARM/Release/CoreCompileInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary/obj/ARM/Release/CoreCompileInputs.cache -------------------------------------------------------------------------------- /BlynkLibrary/obj/BlynkLibrary.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary/obj/BlynkLibrary.csproj.nuget.g.props -------------------------------------------------------------------------------- /BlynkLibrary/obj/BlynkLibrary.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary/obj/BlynkLibrary.csproj.nuget.g.targets -------------------------------------------------------------------------------- /BlynkLibrary/obj/Debug/BlynkLibrary.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary/obj/Debug/BlynkLibrary.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /BlynkLibrary/obj/Debug/BlynkLibrary.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary/obj/Debug/BlynkLibrary.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /BlynkLibrary/obj/Debug/BlynkLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary/obj/Debug/BlynkLibrary.dll -------------------------------------------------------------------------------- /BlynkLibrary/obj/Debug/BlynkLibrary.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary/obj/Debug/BlynkLibrary.pdb -------------------------------------------------------------------------------- /BlynkLibrary/obj/Debug/CoreCompileInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary/obj/Debug/CoreCompileInputs.cache -------------------------------------------------------------------------------- /BlynkLibrary/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /BlynkLibrary/obj/Debug/MultipleQualifiersPerDimensionFound.txt: -------------------------------------------------------------------------------- 1 | False -------------------------------------------------------------------------------- /BlynkLibrary/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlynkLibrary/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlynkLibrary/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlynkLibrary/obj/Debug/embed.resfiles: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlynkLibrary/obj/Debug/embed.resfiles.intermediate: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlynkLibrary/obj/Debug/layout.resfiles: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlynkLibrary/obj/Debug/layout.resfiles.intermediate: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlynkLibrary/obj/Debug/pri.resfiles: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlynkLibrary/obj/Debug/pri.resfiles.intermediate: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlynkLibrary/obj/Debug/priconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary/obj/Debug/priconfig.xml -------------------------------------------------------------------------------- /BlynkLibrary/obj/Debug/priconfig.xml.intermediate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary/obj/Debug/priconfig.xml.intermediate -------------------------------------------------------------------------------- /BlynkLibrary/obj/Debug/qualifiers.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlynkLibrary/obj/Debug/qualifiers.txt.intermediate: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlynkLibrary/obj/Debug/resources.resfiles: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlynkLibrary/obj/Debug/resources.resfiles.intermediate: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlynkLibrary/obj/DebugLocal/CoreCompileInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary/obj/DebugLocal/CoreCompileInputs.cache -------------------------------------------------------------------------------- /BlynkLibrary/obj/Release/CoreCompileInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary/obj/Release/CoreCompileInputs.cache -------------------------------------------------------------------------------- /BlynkLibrary/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary/obj/project.assets.json -------------------------------------------------------------------------------- /BlynkLibrary/obj/x64/Debug/CoreCompileInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary/obj/x64/Debug/CoreCompileInputs.cache -------------------------------------------------------------------------------- /BlynkLibrary/obj/x64/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary/obj/x64/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /BlynkLibrary/obj/x64/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlynkLibrary/obj/x64/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlynkLibrary/obj/x64/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlynkLibrary/obj/x64/DebugLocal/BlynkLibrary.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary/obj/x64/DebugLocal/BlynkLibrary.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /BlynkLibrary/obj/x64/DebugLocal/BlynkLibrary.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary/obj/x64/DebugLocal/BlynkLibrary.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /BlynkLibrary/obj/x64/DebugLocal/BlynkLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary/obj/x64/DebugLocal/BlynkLibrary.dll -------------------------------------------------------------------------------- /BlynkLibrary/obj/x64/DebugLocal/BlynkLibrary.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary/obj/x64/DebugLocal/BlynkLibrary.pdb -------------------------------------------------------------------------------- /BlynkLibrary/obj/x64/DebugLocal/CoreCompileInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary/obj/x64/DebugLocal/CoreCompileInputs.cache -------------------------------------------------------------------------------- /BlynkLibrary/obj/x64/DebugLocal/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary/obj/x64/DebugLocal/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /BlynkLibrary/obj/x64/DebugLocal/MultipleQualifiersPerDimensionFound.txt: -------------------------------------------------------------------------------- 1 | False -------------------------------------------------------------------------------- /BlynkLibrary/obj/x64/DebugLocal/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlynkLibrary/obj/x64/DebugLocal/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlynkLibrary/obj/x64/DebugLocal/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlynkLibrary/obj/x64/DebugLocal/embed.resfiles: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlynkLibrary/obj/x64/DebugLocal/embed.resfiles.intermediate: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlynkLibrary/obj/x64/DebugLocal/layout.resfiles: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlynkLibrary/obj/x64/DebugLocal/layout.resfiles.intermediate: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlynkLibrary/obj/x64/DebugLocal/pri.resfiles: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlynkLibrary/obj/x64/DebugLocal/pri.resfiles.intermediate: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlynkLibrary/obj/x64/DebugLocal/priconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary/obj/x64/DebugLocal/priconfig.xml -------------------------------------------------------------------------------- /BlynkLibrary/obj/x64/DebugLocal/priconfig.xml.intermediate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary/obj/x64/DebugLocal/priconfig.xml.intermediate -------------------------------------------------------------------------------- /BlynkLibrary/obj/x64/DebugLocal/qualifiers.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlynkLibrary/obj/x64/DebugLocal/qualifiers.txt.intermediate: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlynkLibrary/obj/x64/DebugLocal/resources.resfiles: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlynkLibrary/obj/x64/DebugLocal/resources.resfiles.intermediate: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlynkLibrary/obj/x64/Release/CoreCompileInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary/obj/x64/Release/CoreCompileInputs.cache -------------------------------------------------------------------------------- /BlynkLibrary/obj/x86/Debug/CoreCompileInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary/obj/x86/Debug/CoreCompileInputs.cache -------------------------------------------------------------------------------- /BlynkLibrary/obj/x86/DebugLocal/CoreCompileInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary/obj/x86/DebugLocal/CoreCompileInputs.cache -------------------------------------------------------------------------------- /BlynkLibrary/obj/x86/Release/CoreCompileInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/BlynkLibrary/obj/x86/Release/CoreCompileInputs.cache -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrefroy/BlynkLibrary/HEAD/README.md --------------------------------------------------------------------------------