GHIElectronics.UAP.Shields.FEZHAT.GetAcceleration C# (CSharp) Method

GetAcceleration() public method

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.
return void
        public void GetAcceleration(out double x, out double y, out double z) => this.accelerometer.GetAcceleration(out x, out y, out z);