Skip to content

Sensor basics

Uffe Björklund edited this page Jun 16, 2015 · 6 revisions

Here we fill in our SensorController! The sensor controller is what will communicate with our sensortag

To start with we only have a method for IrTempChange and this method takes a strongly typed parameter.

public class TempModel
{
    /// <summary>
    /// Object temperature
    /// </summary>
    public double obj { get; set; }
    /// <summary>
    /// Ambient temperature
    /// </summary>
    public double amb { get; set; }
}

next

Clone this wiki locally