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="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
darienf 3:36de8b9e4b1a 3 <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
darienf 3:36de8b9e4b1a 4 <PropertyGroup>
darienf 3:36de8b9e4b1a 5 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
darienf 3:36de8b9e4b1a 6 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
darienf 3:36de8b9e4b1a 7 <ProjectGuid>{28A72C36-6880-4A8E-800A-86959B22A8AC}</ProjectGuid>
darienf 3:36de8b9e4b1a 8 <OutputType>Exe</OutputType>
darienf 3:36de8b9e4b1a 9 <AppDesignerFolder>Properties</AppDesignerFolder>
darienf 3:36de8b9e4b1a 10 <RootNamespace>SerialWrap</RootNamespace>
darienf 3:36de8b9e4b1a 11 <AssemblyName>SerialWrap</AssemblyName>
darienf 3:36de8b9e4b1a 12 <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
darienf 3:36de8b9e4b1a 13 <FileAlignment>512</FileAlignment>
darienf 3:36de8b9e4b1a 14 <TargetFrameworkProfile />
darienf 3:36de8b9e4b1a 15 </PropertyGroup>
darienf 3:36de8b9e4b1a 16 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
darienf 3:36de8b9e4b1a 17 <PlatformTarget>AnyCPU</PlatformTarget>
darienf 3:36de8b9e4b1a 18 <DebugSymbols>true</DebugSymbols>
darienf 3:36de8b9e4b1a 19 <DebugType>full</DebugType>
darienf 3:36de8b9e4b1a 20 <Optimize>false</Optimize>
darienf 3:36de8b9e4b1a 21 <OutputPath>bin\Debug\</OutputPath>
darienf 3:36de8b9e4b1a 22 <DefineConstants>DEBUG;TRACE</DefineConstants>
darienf 3:36de8b9e4b1a 23 <ErrorReport>prompt</ErrorReport>
darienf 3:36de8b9e4b1a 24 <WarningLevel>4</WarningLevel>
darienf 3:36de8b9e4b1a 25 </PropertyGroup>
darienf 3:36de8b9e4b1a 26 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
darienf 3:36de8b9e4b1a 27 <PlatformTarget>x86</PlatformTarget>
darienf 3:36de8b9e4b1a 28 <DebugType>pdbonly</DebugType>
darienf 3:36de8b9e4b1a 29 <Optimize>true</Optimize>
darienf 3:36de8b9e4b1a 30 <OutputPath>bin\Release\</OutputPath>
darienf 3:36de8b9e4b1a 31 <DefineConstants>TRACE</DefineConstants>
darienf 3:36de8b9e4b1a 32 <ErrorReport>prompt</ErrorReport>
darienf 3:36de8b9e4b1a 33 <WarningLevel>4</WarningLevel>
darienf 3:36de8b9e4b1a 34 </PropertyGroup>
darienf 3:36de8b9e4b1a 35 <ItemGroup>
darienf 3:36de8b9e4b1a 36 <None Include="App.config_" />
darienf 3:36de8b9e4b1a 37 <None Include="packages.config_" />
darienf 3:36de8b9e4b1a 38 </ItemGroup>
darienf 3:36de8b9e4b1a 39 <ItemGroup>
darienf 3:36de8b9e4b1a 40 <Compile Include="serialportio.cs" />
darienf 3:36de8b9e4b1a 41 <Compile Include="SerialPortTester.cs" />
darienf 3:36de8b9e4b1a 42 </ItemGroup>
darienf 3:36de8b9e4b1a 43 <ItemGroup>
darienf 3:36de8b9e4b1a 44 <Reference Include="Common.Logging">
darienf 3:36de8b9e4b1a 45 <HintPath>..\Common.Logging\Common.Logging.dll</HintPath>
darienf 3:36de8b9e4b1a 46 </Reference>
darienf 3:36de8b9e4b1a 47 <Reference Include="Common.Logging.Core">
darienf 3:36de8b9e4b1a 48 <HintPath>..\Common.Logging\Common.Logging.Core.dll</HintPath>
darienf 3:36de8b9e4b1a 49 </Reference>
darienf 3:36de8b9e4b1a 50 <Reference Include="System" />
darienf 3:36de8b9e4b1a 51 <Reference Include="System.Xml" />
darienf 3:36de8b9e4b1a 52 </ItemGroup>
darienf 3:36de8b9e4b1a 53 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
darienf 3:36de8b9e4b1a 54 <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
darienf 3:36de8b9e4b1a 55 Other similar extension points exist, see Microsoft.Common.targets.
darienf 3:36de8b9e4b1a 56 <Target Name="BeforeBuild">
darienf 3:36de8b9e4b1a 57 </Target>
darienf 3:36de8b9e4b1a 58 <Target Name="AfterBuild">
darienf 3:36de8b9e4b1a 59 </Target>
darienf 3:36de8b9e4b1a 60 -->
darienf 3:36de8b9e4b1a 61 </Project>