Gy 63 Ms5611 01Ba03 Air Pressure Sensor Module High Precision Height Sensor Module
Rs. 373.00 Rs. 426.00
- Brand: https://www.te.com/usa-en/product-MS561101BA03-30.html?q=ms56110
- Product Code: SEN-BAROMETRIC
- SKU -
- Availability: In Stock
- Price in reward points: 5
- For Bulk Order 9962060070
Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
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
https://www.te.com/usa-en/product-MS561101BA03-30.html?q=ms561101ba03&source=header
//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