-
Notifications
You must be signed in to change notification settings - Fork 0
/
Accelerometer.cs
77 lines (75 loc) · 1.65 KB
/
Accelerometer.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 Accelerometer _accelerometer;
/// <summary>
/// センサーから計測してその結果を返します。
/// </summary>
[自分で]
public 加速度情報 計測()
{
if (_accelerometer == null) _accelerometer = Accelerometer.GetDefault();
if (_accelerometer != null)
{
var reading = _accelerometer.GetCurrentReading();
return new 加速度情報(reading);
}
else
return null;
}
/// <summary>
/// 測定に使用するセンサーをデバイスIDで選択します。
/// </summary>
[自分から]
public bool 選択(string ID)
{
Task<Accelerometer> t1 = null;
Task.Run(() =>
{
t1 = Accelerometer.FromIdAsync(ID).AsTask<Accelerometer>();
}).Wait();
_accelerometer = t1.Result;
return _accelerometer != null;
}
public string デバイス名
{
get { return _accelerometer.DeviceId; }
}
}
public class 加速度情報 : IProduireClass
{
AccelerometerReading reading;
public 加速度情報(AccelerometerReading args)
{
this.reading = args;
}
public double X
{
get { return reading.AccelerationX; }
}
public double Y
{
get { return reading.AccelerationY; }
}
public double Z
{
get { return reading.AccelerationZ; }
}
public DateTimeOffset 測定時刻
{
get { return reading.Timestamp; }
}
public TimeSpan 測定回数
{
get { return reading.PerformanceCount.Value; }
}
}
}