libraries / Adafruit_BMP085_Unified-master / README.mdon commit Added link to project report (97a3ba0)
   1#Adafruit Unified BMP085/BMP180 Driver (Barometric Pressure Sensor) #
   2
   3This driver is for the Adafruit BMP085 Breakout (http://www.adafruit.com/products/391) or BMP180 breakout (http://www.adafruit.com/products/1603), and is based on Adafruit's Unified Sensor Library (Adafruit_Sensor).
   4
   5## About the BMP085 / BMP180 ##
   6
   7This precision sensor from Bosch is the best low-cost sensing solution for measuring barometric pressure and temperature. Because pressure changes with altitude you can also use it as an altimeter! 
   8
   9## What is the Adafruit Unified Sensor Library? ##
  10
  11The Adafruit Unified Sensor Library ([Adafruit_Sensor](https://github.com/adafruit/Adafruit_Sensor)) provides a common interface and data type for any supported sensor.  It defines some basic information about the sensor (sensor limits, etc.), and returns standard SI units of a specific type and scale for each supported sensor type.
  12
  13It provides a simple abstraction layer between your application and the actual sensor HW, allowing you to drop in any comparable sensor with only one or two lines of code to change in your project (essentially the constructor since the functions to read sensor data and get information about the sensor are defined in the base Adafruit_Sensor class).
  14
  15This is imporant useful for two reasons:
  16
  171.) You can use the data right away because it's already converted to SI units that you understand and can compare, rather than meaningless values like 0..1023.
  18
  192.) Because SI units are standardised in the sensor library, you can also do quick sanity checks when working with new sensors, or drop in any comparable sensor if you need better sensitivity or if a lower cost unit becomes available, etc. 
  20
  21Light sensors will always report units in lux, gyroscopes will always report units in rad/s, etc. ... freeing you up to focus on the data, rather than digging through the datasheet to understand what the sensor's raw numbers really mean.
  22
  23## About this Driver ##
  24
  25Adafruit invests time and resources providing this open source code.  Please support Adafruit and open-source hardware by purchasing products from Adafruit!
  26
  27Written by Kevin (KTOWN) Townsend for Adafruit Industries.