-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gyrometer.cs
77 lines (75 loc) · 1.61 KB
/
Gyrometer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
using System.Threading;
using Windows.Devices.Sensors;
using System.Threading.Tasks;
namespace Produire.Sensor
{
public class ジャイロセンサー : IProduireClass
{
private Gyrometer _gyrometer;
/// <summary>
/// センサーから計測してその結果を返します。
/// </summary>
[自分で]
public ジャイロ情報 計測()
{
if (_gyrometer == null) _gyrometer = Gyrometer.GetDefault();
if (_gyrometer != null)
{
var reading = _gyrometer.GetCurrentReading();
return new ジャイロ情報(reading);
}
else
return null;
}
/// <summary>
/// 測定に使用するセンサーをデバイスIDで選択します。
/// </summary>
[自分から]
public bool 選択(string ID)
{
Task<Gyrometer> t1 = null;
Task.Run(() =>
{
t1 = Gyrometer.FromIdAsync(ID).AsTask<Gyrometer>();
}).Wait();
_gyrometer = t1.Result;
return _gyrometer != null;
}
public string デバイス名
{
get { return _gyrometer.DeviceId; }
}
}
public class ジャイロ情報 : IProduireClass
{
GyrometerReading reading;
public ジャイロ情報(GyrometerReading args)
{
this.reading = args;
}
public double X
{
get { return reading.AngularVelocityX; }
}
public double Y
{
get { return reading.AngularVelocityY; }
}
public double Z
{
get { return reading.AngularVelocityZ; }
}
public DateTimeOffset 測定時刻
{
get { return reading.Timestamp; }
}
public TimeSpan 測定回数
{
get { return reading.PerformanceCount.Value; }
}
}
}