Darien Figueroa / Mbed 2 deprecated repo3

Dependencies:   mbed MAX14720 MAX30205 USBDevice

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers PartialArrayIntAvailableEventArgs.cs Source File

PartialArrayIntAvailableEventArgs.cs

00001 using System;
00002 using System.Collections.Generic;
00003 using System.Linq;
00004 using System.Text;
00005 
00006 namespace HealthSensorPlatform
00007 {
00008     public class PartialArrayIntAvailableEventArgs : EventArgs
00009     {
00010         /// <summary>
00011         /// Sequential index of the first sample.
00012         /// </summary>
00013         public int sampleNumberOffset { get; set; }
00014 
00015         /// <summary>
00016         /// Red channel (660nm) integer values in time sequence.
00017         /// </summary>
00018         public int[] rawRedData { get; set; }
00019 
00020         /// <summary>
00021         /// Infrared channel (880nm) integer values in time sequence.
00022         /// </summary>
00023         public int[] rawIRData { get; set; }
00024 
00025         /// <summary>
00026         /// Green channel (527nm) integer values in time sequence.
00027         /// </summary>
00028         public int[] rawGreenData { get; set; }
00029     }
00030 
00031 }