Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed MAX14720 MAX30205 USBDevice
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 }
Generated on Thu Jul 28 2022 18:07:15 by
 1.7.2