11 lines
218 B
C#
Raw Permalink Normal View History

2025-01-14 15:38:01 +01:00
using Microsoft.Devices.Sensors;
namespace Microsoft.Devices.Sensors
{
public class Accelerometer : SensorBase<AccelerometerReading>
{
public void Start() { }
public void Stop() { }
}
}