![](/media/cache/img/default_profile.jpg.50x50_q85.jpg)
This is the latest working repository used in our demo video for the Maxim to display temperature readings on Bluetooth
hspguisourcev301/HspGuiSourceV301/HSPGui/PartialArrayIntAvailableEventArgs.cs@3:36de8b9e4b1a, 2021-04-10 (annotated)
- Committer:
- darienf
- Date:
- Sat Apr 10 03:05:42 2021 +0000
- Revision:
- 3:36de8b9e4b1a
ayoooo
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
darienf | 3:36de8b9e4b1a | 1 | using System; |
darienf | 3:36de8b9e4b1a | 2 | using System.Collections.Generic; |
darienf | 3:36de8b9e4b1a | 3 | using System.Linq; |
darienf | 3:36de8b9e4b1a | 4 | using System.Text; |
darienf | 3:36de8b9e4b1a | 5 | |
darienf | 3:36de8b9e4b1a | 6 | namespace HealthSensorPlatform |
darienf | 3:36de8b9e4b1a | 7 | { |
darienf | 3:36de8b9e4b1a | 8 | public class PartialArrayIntAvailableEventArgs : EventArgs |
darienf | 3:36de8b9e4b1a | 9 | { |
darienf | 3:36de8b9e4b1a | 10 | /// <summary> |
darienf | 3:36de8b9e4b1a | 11 | /// Sequential index of the first sample. |
darienf | 3:36de8b9e4b1a | 12 | /// </summary> |
darienf | 3:36de8b9e4b1a | 13 | public int sampleNumberOffset { get; set; } |
darienf | 3:36de8b9e4b1a | 14 | |
darienf | 3:36de8b9e4b1a | 15 | /// <summary> |
darienf | 3:36de8b9e4b1a | 16 | /// Red channel (660nm) integer values in time sequence. |
darienf | 3:36de8b9e4b1a | 17 | /// </summary> |
darienf | 3:36de8b9e4b1a | 18 | public int[] rawRedData { get; set; } |
darienf | 3:36de8b9e4b1a | 19 | |
darienf | 3:36de8b9e4b1a | 20 | /// <summary> |
darienf | 3:36de8b9e4b1a | 21 | /// Infrared channel (880nm) integer values in time sequence. |
darienf | 3:36de8b9e4b1a | 22 | /// </summary> |
darienf | 3:36de8b9e4b1a | 23 | public int[] rawIRData { get; set; } |
darienf | 3:36de8b9e4b1a | 24 | |
darienf | 3:36de8b9e4b1a | 25 | /// <summary> |
darienf | 3:36de8b9e4b1a | 26 | /// Green channel (527nm) integer values in time sequence. |
darienf | 3:36de8b9e4b1a | 27 | /// </summary> |
darienf | 3:36de8b9e4b1a | 28 | public int[] rawGreenData { get; set; } |
darienf | 3:36de8b9e4b1a | 29 | } |
darienf | 3:36de8b9e4b1a | 30 | |
darienf | 3:36de8b9e4b1a | 31 | } |