This is the latest working repository used in our demo video for the Maxim to display temperature readings on Bluetooth

Dependencies:   USBDevice

Committer:
darienf
Date:
Sun May 02 23:09:04 2021 +0000
Revision:
5:bc128a16232f
Parent:
3:36de8b9e4b1a
This is the program that was last used, that has the working temperature and some comments

Who changed what in which revision?

UserRevisionLine numberNew contents of line
darienf 3:36de8b9e4b1a 1 <?xml version="1.0" encoding="utf-8"?>
darienf 3:36de8b9e4b1a 2 <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
darienf 3:36de8b9e4b1a 3 <PropertyGroup>
darienf 3:36de8b9e4b1a 4 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
darienf 3:36de8b9e4b1a 5 <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
darienf 3:36de8b9e4b1a 6 <ProductVersion>8.0.30703</ProductVersion>
darienf 3:36de8b9e4b1a 7 <SchemaVersion>2.0</SchemaVersion>
darienf 3:36de8b9e4b1a 8 <ProjectGuid>{CEF8731E-362F-407C-86A7-F65ACE2A1ACB}</ProjectGuid>
darienf 3:36de8b9e4b1a 9 <OutputType>WinExe</OutputType>
darienf 3:36de8b9e4b1a 10 <AppDesignerFolder>Properties</AppDesignerFolder>
darienf 3:36de8b9e4b1a 11 <RootNamespace>RpcClientExample</RootNamespace>
darienf 3:36de8b9e4b1a 12 <AssemblyName>SimpleHID</AssemblyName>
darienf 3:36de8b9e4b1a 13 <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
darienf 3:36de8b9e4b1a 14 <TargetFrameworkProfile>
darienf 3:36de8b9e4b1a 15 </TargetFrameworkProfile>
darienf 3:36de8b9e4b1a 16 <FileAlignment>512</FileAlignment>
darienf 3:36de8b9e4b1a 17 </PropertyGroup>
darienf 3:36de8b9e4b1a 18 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
darienf 3:36de8b9e4b1a 19 <PlatformTarget>x86</PlatformTarget>
darienf 3:36de8b9e4b1a 20 <DebugSymbols>true</DebugSymbols>
darienf 3:36de8b9e4b1a 21 <DebugType>full</DebugType>
darienf 3:36de8b9e4b1a 22 <Optimize>false</Optimize>
darienf 3:36de8b9e4b1a 23 <OutputPath>bin\Debug\</OutputPath>
darienf 3:36de8b9e4b1a 24 <DefineConstants>DEBUG;TRACE</DefineConstants>
darienf 3:36de8b9e4b1a 25 <ErrorReport>prompt</ErrorReport>
darienf 3:36de8b9e4b1a 26 <WarningLevel>4</WarningLevel>
darienf 3:36de8b9e4b1a 27 </PropertyGroup>
darienf 3:36de8b9e4b1a 28 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
darienf 3:36de8b9e4b1a 29 <PlatformTarget>x86</PlatformTarget>
darienf 3:36de8b9e4b1a 30 <DebugType>pdbonly</DebugType>
darienf 3:36de8b9e4b1a 31 <Optimize>true</Optimize>
darienf 3:36de8b9e4b1a 32 <OutputPath>bin\Release\</OutputPath>
darienf 3:36de8b9e4b1a 33 <DefineConstants>TRACE</DefineConstants>
darienf 3:36de8b9e4b1a 34 <ErrorReport>prompt</ErrorReport>
darienf 3:36de8b9e4b1a 35 <WarningLevel>4</WarningLevel>
darienf 3:36de8b9e4b1a 36 </PropertyGroup>
darienf 3:36de8b9e4b1a 37 <ItemGroup>
darienf 3:36de8b9e4b1a 38 <Reference Include="MaximStyle">
darienf 3:36de8b9e4b1a 39 <HintPath>.\MaximStyle.dll</HintPath>
darienf 3:36de8b9e4b1a 40 </Reference>
darienf 3:36de8b9e4b1a 41 <Reference Include="System" />
darienf 3:36de8b9e4b1a 42 <Reference Include="System.Core" />
darienf 3:36de8b9e4b1a 43 <Reference Include="System.Xml.Linq" />
darienf 3:36de8b9e4b1a 44 <Reference Include="System.Data.DataSetExtensions" />
darienf 3:36de8b9e4b1a 45 <Reference Include="Microsoft.CSharp" />
darienf 3:36de8b9e4b1a 46 <Reference Include="System.Data" />
darienf 3:36de8b9e4b1a 47 <Reference Include="System.Deployment" />
darienf 3:36de8b9e4b1a 48 <Reference Include="System.Drawing" />
darienf 3:36de8b9e4b1a 49 <Reference Include="System.Windows.Forms" />
darienf 3:36de8b9e4b1a 50 <Reference Include="System.Xml" />
darienf 3:36de8b9e4b1a 51 </ItemGroup>
darienf 3:36de8b9e4b1a 52 <ItemGroup>
darienf 3:36de8b9e4b1a 53 <Compile Include="Form1.cs">
darienf 3:36de8b9e4b1a 54 <SubType>Form</SubType>
darienf 3:36de8b9e4b1a 55 </Compile>
darienf 3:36de8b9e4b1a 56 <Compile Include="Form1.Designer.cs">
darienf 3:36de8b9e4b1a 57 <DependentUpon>Form1.cs</DependentUpon>
darienf 3:36de8b9e4b1a 58 </Compile>
darienf 3:36de8b9e4b1a 59 <Compile Include="Program.cs" />
darienf 3:36de8b9e4b1a 60 <Compile Include="Properties\AssemblyInfo.cs" />
darienf 3:36de8b9e4b1a 61 <EmbeddedResource Include="Form1.resx">
darienf 3:36de8b9e4b1a 62 <DependentUpon>Form1.cs</DependentUpon>
darienf 3:36de8b9e4b1a 63 </EmbeddedResource>
darienf 3:36de8b9e4b1a 64 <EmbeddedResource Include="Properties\Resources.resx">
darienf 3:36de8b9e4b1a 65 <Generator>ResXFileCodeGenerator</Generator>
darienf 3:36de8b9e4b1a 66 <LastGenOutput>Resources.Designer.cs</LastGenOutput>
darienf 3:36de8b9e4b1a 67 <SubType>Designer</SubType>
darienf 3:36de8b9e4b1a 68 </EmbeddedResource>
darienf 3:36de8b9e4b1a 69 <Compile Include="Properties\Resources.Designer.cs">
darienf 3:36de8b9e4b1a 70 <AutoGen>True</AutoGen>
darienf 3:36de8b9e4b1a 71 <DependentUpon>Resources.resx</DependentUpon>
darienf 3:36de8b9e4b1a 72 <DesignTime>True</DesignTime>
darienf 3:36de8b9e4b1a 73 </Compile>
darienf 3:36de8b9e4b1a 74 <None Include="app.config" />
darienf 3:36de8b9e4b1a 75 <None Include="Properties\Settings.settings">
darienf 3:36de8b9e4b1a 76 <Generator>SettingsSingleFileGenerator</Generator>
darienf 3:36de8b9e4b1a 77 <LastGenOutput>Settings.Designer.cs</LastGenOutput>
darienf 3:36de8b9e4b1a 78 </None>
darienf 3:36de8b9e4b1a 79 <Compile Include="Properties\Settings.Designer.cs">
darienf 3:36de8b9e4b1a 80 <AutoGen>True</AutoGen>
darienf 3:36de8b9e4b1a 81 <DependentUpon>Settings.settings</DependentUpon>
darienf 3:36de8b9e4b1a 82 <DesignTimeSharedInput>True</DesignTimeSharedInput>
darienf 3:36de8b9e4b1a 83 </Compile>
darienf 3:36de8b9e4b1a 84 </ItemGroup>
darienf 3:36de8b9e4b1a 85 <ItemGroup>
darienf 3:36de8b9e4b1a 86 <ProjectReference Include="..\GuiDLLs\MAX30101\HSPDevices.csproj">
darienf 3:36de8b9e4b1a 87 <Project>{B068077E-189F-4CEA-89F7-9E91EF39EC5D}</Project>
darienf 3:36de8b9e4b1a 88 <Name>HSPDevices</Name>
darienf 3:36de8b9e4b1a 89 </ProjectReference>
darienf 3:36de8b9e4b1a 90 <ProjectReference Include="..\GuiDLLs\RPCSupport\RPCSupport.csproj">
darienf 3:36de8b9e4b1a 91 <Project>{170A27F5-0680-485D-8B90-EA736719016E}</Project>
darienf 3:36de8b9e4b1a 92 <Name>RPCSupport</Name>
darienf 3:36de8b9e4b1a 93 </ProjectReference>
darienf 3:36de8b9e4b1a 94 </ItemGroup>
darienf 3:36de8b9e4b1a 95 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
darienf 3:36de8b9e4b1a 96 <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
darienf 3:36de8b9e4b1a 97 Other similar extension points exist, see Microsoft.Common.targets.
darienf 3:36de8b9e4b1a 98 <Target Name="BeforeBuild">
darienf 3:36de8b9e4b1a 99 </Target>
darienf 3:36de8b9e4b1a 100 <Target Name="AfterBuild">
darienf 3:36de8b9e4b1a 101 </Target>
darienf 3:36de8b9e4b1a 102 -->
darienf 3:36de8b9e4b1a 103 </Project>