Esempio n. 1
0
 public static double AsInt32(this CommandResponse response) => BitConverter.ToInt32(response.Content, 0);
Esempio n. 2
0
 public static double AsUInt64(this CommandResponse response) => BitConverter.ToUInt64(response.Content, 0);
Esempio n. 3
0
 public static double AsFloat(this CommandResponse response) => BitConverter.ToDouble(response.Content, 0);
Esempio n. 4
0
        // ------

        public static string AsString(this CommandResponse response) => ASCIIEncoding.ASCII.GetString(response.Content);
Esempio n. 5
0
 public static SpectrumData AsSpectrumData(this CommandResponse response) => new SpectrumData(response.Content);
Esempio n. 6
0
 public static SensorData AsSensorData(this CommandResponse response) => new SensorData(response.Content);
Esempio n. 7
0
 public static PeakData AsPeakData(this CommandResponse response) => new PeakData(response.Content);