GHIElectronics.UAP.Shields.FEZHAT.GetAcceleration C# (CSharp) 메소드

GetAcceleration() 공개 메소드

Gets the acceleration in G's for each axis from the onboard sensor.
public GetAcceleration ( double &x, double &y, double &z ) : void
x double The current X-axis acceleration.
y double The current Y-axis acceleration.
z double The current Z-axis acceleration.
리턴 void
        public void GetAcceleration(out double x, out double y, out double z) => this.accelerometer.GetAcceleration(out x, out y, out z);