GrFamily.Module.Adxl345.GetY C# (CSharp) Method

GetY() public method

Y�������̉����x�f�[�^��擾����
public GetY ( ) : short
return short
        public short GetY()
        {
            Measure();
            RegReads(DataX0, ref _xyz);
            return (short)((_xyz[3] << 8) + _xyz[2]);
        }