Wish List 0

Gy 63 Ms5611 01Ba03 Air Pressure Sensor Module High Precision Height Sensor Module

Rs. 373.00 Rs. 426.00

The GY-63 MS5611 is a high performance pressure and temperature sensor module with I2C and SPI interface.

SPECIFICATION:

-Fast conversion as short as 1ms-I2C and SPI Interface-5V operation
Temperature          -40 to 85°C
Pressure             10 to 1200 mb
Altitude resolution  10cm
Vcc   5V
Pressure Range  10    -1200mbar
Accuracy ±1.5mbar
Temperature Range  -40   -80°C
Accuracy ±0.8C

OVERVIEW:

-The built-in 24bit AD converter.

-Immersion gold PCB, high quality, machine welding process to ensure quality.

-Power supply: 3 – 5V ( internal low dropout regulator ).

-Communication modes: Standard the IIC / SPI communication protocol.

PACKAGE INCLUDES:

1 PCS x Gy 63 Ms5611 01Ba03 Air Pressure Sensor Module High Precision Height Sensor Module


//SOURCE CODE TAKEN FROM BELOW LINK

//http://arduinolearning.com/code/arduino-and-ms5611-barometric-pressure-sensor-example.php

#include <Wire.h>

#include <MS5611.h>

 

MS5611 ms5611;

 

double referencePressure;

 

void setup() 

{

  Serial.begin(9600);

 

  // Initialize MS5611 sensor

  Serial.println("Initialize MS5611 Sensor");

 

  while(!ms5611.begin())

  {

    Serial.println("Could not find a valid MS5611 sensor, check wiring!");

    delay(500);

  }

 

  // Get reference pressure for relative altitude

  referencePressure = ms5611.readPressure();

 

  // Check settings

  checkSettings();

}

 

void checkSettings()

{

  Serial.print("Oversampling: ");

  Serial.println(ms5611.getOversampling());

}

 

void loop()

{

  // Read raw values

  uint32_t rawTemp = ms5611.readRawTemperature();

  uint32_t rawPressure = ms5611.readRawPressure();

 

  // Read true temperature & Pressure

  double realTemperature = ms5611.readTemperature();

  long realPressure = ms5611.readPressure();

 

  // Calculate altitude

  float absoluteAltitude = ms5611.getAltitude(realPressure);

  float relativeAltitude = ms5611.getAltitude(realPressure, referencePressure);

 

  Serial.println("--");

 

  Serial.print(" rawTemp = ");

  Serial.print(rawTemp);

  Serial.print(", realTemp = ");

  Serial.print(realTemperature);

  Serial.println(" *C");

 

  Serial.print(" rawPressure = ");

  Serial.print(rawPressure);

  Serial.print(", realPressure = ");

  Serial.print(realPressure);

  Serial.println(" Pa");

 

  Serial.print(" absoluteAltitude = ");

  Serial.print(absoluteAltitude);

  Serial.print(" m, relativeAltitude = ");

  Serial.print(relativeAltitude);    

  Serial.println(" m");

 

  delay(1000);

}

 

15 days

Write a review

Please login or register to review