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 using System.Reflection;
darienf 3:36de8b9e4b1a 2 using System.Runtime.CompilerServices;
darienf 3:36de8b9e4b1a 3 using System.Runtime.InteropServices;
darienf 3:36de8b9e4b1a 4
darienf 3:36de8b9e4b1a 5 // General Information about an assembly is controlled through the following
darienf 3:36de8b9e4b1a 6 // set of attributes. Change these attribute values to modify the information
darienf 3:36de8b9e4b1a 7 // associated with an assembly.
darienf 3:36de8b9e4b1a 8 [assembly: AssemblyTitle("RPCSupportTest")]
darienf 3:36de8b9e4b1a 9 [assembly: AssemblyDescription("")]
darienf 3:36de8b9e4b1a 10 [assembly: AssemblyConfiguration("")]
darienf 3:36de8b9e4b1a 11 [assembly: AssemblyCompany("")]
darienf 3:36de8b9e4b1a 12 [assembly: AssemblyProduct("RPCSupportTest")]
darienf 3:36de8b9e4b1a 13 [assembly: AssemblyCopyright("Copyright © 2015")]
darienf 3:36de8b9e4b1a 14 [assembly: AssemblyTrademark("")]
darienf 3:36de8b9e4b1a 15 [assembly: AssemblyCulture("")]
darienf 3:36de8b9e4b1a 16
darienf 3:36de8b9e4b1a 17 // Setting ComVisible to false makes the types in this assembly not visible
darienf 3:36de8b9e4b1a 18 // to COM components. If you need to access a type in this assembly from
darienf 3:36de8b9e4b1a 19 // COM, set the ComVisible attribute to true on that type.
darienf 3:36de8b9e4b1a 20 [assembly: ComVisible(false)]
darienf 3:36de8b9e4b1a 21
darienf 3:36de8b9e4b1a 22 // The following GUID is for the ID of the typelib if this project is exposed to COM
darienf 3:36de8b9e4b1a 23 [assembly: Guid("067456c0-086c-46a8-b37f-1405717b7bfc")]
darienf 3:36de8b9e4b1a 24
darienf 3:36de8b9e4b1a 25 // Version information for an assembly consists of the following four values:
darienf 3:36de8b9e4b1a 26 //
darienf 3:36de8b9e4b1a 27 // Major Version
darienf 3:36de8b9e4b1a 28 // Minor Version
darienf 3:36de8b9e4b1a 29 // Build Number
darienf 3:36de8b9e4b1a 30 // Revision
darienf 3:36de8b9e4b1a 31 //
darienf 3:36de8b9e4b1a 32 // You can specify all the values or you can default the Build and Revision Numbers
darienf 3:36de8b9e4b1a 33 // by using the '*' as shown below:
darienf 3:36de8b9e4b1a 34 // [assembly: AssemblyVersion("1.0.*")]
darienf 3:36de8b9e4b1a 35 [assembly: AssemblyVersion("1.0.0.0")]
darienf 3:36de8b9e4b1a 36 [assembly: AssemblyFileVersion("1.0.0.0")]