11 lines
215 B
C#
Raw Permalink Normal View History

using Microsoft.Devices.Sensors;
namespace Microsoft.Devices.Sensors
{
public class Accelerometer : SensorBase<AccelerometerReading>
{
public void Start() { }
public void Stop() { }
}
}