Page 4
Disclaimer For physical injuries and possessions loss caused by those reasons which are not related to product quality, such as operating without following manual guide, natural disasters or force majeure, we take no responsibility for that. Under the supervision of Seeed Technology Inc., this manual has been compiled and published which covered the latest product description and specification.
1. Introduction This is a Grove module for the Bosch BMP180 high-precision, low-power digital barometer. The BMP180 offers a pressure measuring range of 300 to 1100 hPa with an accuracy down to 0.02 hPa in advanced resolution mode. It’s based on piezo-resistive technology for high accuracy, ruggedness and long term stability.
2. Features Digital two wire (I2C) interface Wide barometric pressure range Flexible supply voltage range Ultra-low power consumption Low noise measurement Factory-calibrated -40 to +85°C operational range, ±2°C temperature accuracy I2C address: 0x77...
1. Connect it to IIC port of Seeeduino or Grove - Base Shield via a Grove cable. And connect Arduino to PC via a USB cable. 2. Download library(the barometer library is shared by Grove - Barometer Sensor (BMP180) and Grove - Barometer Sensor(BMP085));Unzip it into the libraries file of Arduino IDE by the path: ..\arduino-1.0.1\libraries.
Page 10
Serial.print("Temperature: "); Serial.print(temperature, 2); //display 2 decimal places Serial.println("deg C"); Serial.print("Pressure: "); Serial.print(pressure, 0); //whole number only. Serial.println(" Pa"); Serial.print("Ralated Atmosphere: "); Serial.println(atm, 4); //display 4 decimal places Serial.print("Altitude: "); Serial.print(altitude, 2); //display 2 decimal places Serial.println(" m"); Serial.println(); delay(1000); //wait a second and get values again.
Open the serial monitor to receive the sensor's data including temperature, barometric pressure value, relative atmosphere pressure and altitude. With Raspberry Pi You should have got a raspberry pi and a grovepi or grovepi+. You should have completed configuring the development enviroment, otherwise follow here. Connection Plug the sensor to grovepi socket i2c-x(1~3) by using a grove cable.
Page 12
# =========================================================================== # Example Code # =========================================================================== # Initialise the BMP085 and use STANDARD mode (default value) # bmp = BMP085(0x77, debug=True) = BMP085(0x77, 1) # To specify a different operating mode, uncomment one of the following: # bmp = BMP085(0x77, 0) # ULTRALOWPOWER Mode # bmp = BMP085(0x77, 1) # STANDARD Mode # bmp = BMP085(0x77, 2) # HIRES Mode # bmp = BMP085(0x77, 3) # ULTRAHIRES Mode...
Need help?
Do you have a question about the BMP180 and is the answer not in the manual?
Questions and answers