Glovebox.IoT.Devices.Sensors.BMP180.ReadCoefficients C# (CSharp) Метод

ReadCoefficients() приватный Метод

private ReadCoefficients ( ) : void
Результат void
        void ReadCoefficients()
        {
            _bmp085_coeffs.ac1 = readS16(Register.BMP085_REGISTER_CAL_AC1);
            _bmp085_coeffs.ac2 = readS16(Register.BMP085_REGISTER_CAL_AC2);
            _bmp085_coeffs.ac3 = readS16(Register.BMP085_REGISTER_CAL_AC3);
            _bmp085_coeffs.ac4 = read16(Register.BMP085_REGISTER_CAL_AC4);
            _bmp085_coeffs.ac5 = read16(Register.BMP085_REGISTER_CAL_AC5);
            _bmp085_coeffs.ac6 = read16(Register.BMP085_REGISTER_CAL_AC6);
            _bmp085_coeffs.b1 = readS16(Register.BMP085_REGISTER_CAL_B1);
            _bmp085_coeffs.b2 = readS16(Register.BMP085_REGISTER_CAL_B2);
            _bmp085_coeffs.mb = readS16(Register.BMP085_REGISTER_CAL_MB);
            _bmp085_coeffs.mc = readS16(Register.BMP085_REGISTER_CAL_MC);
            _bmp085_coeffs.md = readS16(Register.BMP085_REGISTER_CAL_MD);
        }