mirror of
https://github.com/openeggbert/mobile-eggbert-kni-web.git
synced 2025-03-25 15:47:51 +01:00
11 lines
218 B
C#
11 lines
218 B
C#
|
using Microsoft.Devices.Sensors;
|
|||
|
|
|||
|
namespace Microsoft.Devices.Sensors
|
|||
|
{
|
|||
|
public class Accelerometer : SensorBase<AccelerometerReading>
|
|||
|
{
|
|||
|
public void Start() { }
|
|||
|
public void Stop() { }
|
|||
|
}
|
|||
|
}
|