├── .gitattributes ├── .gitignore ├── Documentation └── BMP180 Datasheet V2.5.pdf ├── LICENSE.md ├── Libraries ├── Arduino │ ├── .gitattributes │ ├── .gitignore │ ├── LICENSE.md │ ├── README.md │ ├── examples │ │ ├── BMP180_altitude_example │ │ │ └── BMP180_altitude_example.ino │ │ ├── README.md │ │ └── SFE_BMP180_example │ │ │ └── SFE_BMP180_example.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── README.md │ │ ├── SFE_BMP180.cpp │ │ └── SFE_BMP180.h ├── README.md └── Teensy │ ├── LICENSE.md │ ├── README.md │ ├── examples │ └── PressTempAlt │ │ └── PressTempAlt.ino │ ├── keywords.txt │ ├── library.properties │ ├── src │ ├── README.md │ ├── Teensy_BMP180.cpp │ └── Teensy_BMP180.h │ └── utilyt │ ├── README.md │ ├── Teensy_BMP180.cpp │ └── Teensy_BMP180.h ├── Production └── BMP180-Breakout-Panel-v10.brd ├── README.md └── hardware ├── SparkFun_BMP180_Breakout.brd └── SparkFun_BMP180_Breakout.sch /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/BMP180_Breakout/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/BMP180_Breakout/HEAD/.gitignore -------------------------------------------------------------------------------- /Documentation/BMP180 Datasheet V2.5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/BMP180_Breakout/HEAD/Documentation/BMP180 Datasheet V2.5.pdf -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/BMP180_Breakout/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Libraries/Arduino/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/BMP180_Breakout/HEAD/Libraries/Arduino/.gitattributes -------------------------------------------------------------------------------- /Libraries/Arduino/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/BMP180_Breakout/HEAD/Libraries/Arduino/.gitignore -------------------------------------------------------------------------------- /Libraries/Arduino/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/BMP180_Breakout/HEAD/Libraries/Arduino/LICENSE.md -------------------------------------------------------------------------------- /Libraries/Arduino/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/BMP180_Breakout/HEAD/Libraries/Arduino/README.md -------------------------------------------------------------------------------- /Libraries/Arduino/examples/BMP180_altitude_example/BMP180_altitude_example.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/BMP180_Breakout/HEAD/Libraries/Arduino/examples/BMP180_altitude_example/BMP180_altitude_example.ino -------------------------------------------------------------------------------- /Libraries/Arduino/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/BMP180_Breakout/HEAD/Libraries/Arduino/examples/README.md -------------------------------------------------------------------------------- /Libraries/Arduino/examples/SFE_BMP180_example/SFE_BMP180_example.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/BMP180_Breakout/HEAD/Libraries/Arduino/examples/SFE_BMP180_example/SFE_BMP180_example.ino -------------------------------------------------------------------------------- /Libraries/Arduino/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/BMP180_Breakout/HEAD/Libraries/Arduino/keywords.txt -------------------------------------------------------------------------------- /Libraries/Arduino/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/BMP180_Breakout/HEAD/Libraries/Arduino/library.properties -------------------------------------------------------------------------------- /Libraries/Arduino/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/BMP180_Breakout/HEAD/Libraries/Arduino/src/README.md -------------------------------------------------------------------------------- /Libraries/Arduino/src/SFE_BMP180.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/BMP180_Breakout/HEAD/Libraries/Arduino/src/SFE_BMP180.cpp -------------------------------------------------------------------------------- /Libraries/Arduino/src/SFE_BMP180.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/BMP180_Breakout/HEAD/Libraries/Arduino/src/SFE_BMP180.h -------------------------------------------------------------------------------- /Libraries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/BMP180_Breakout/HEAD/Libraries/README.md -------------------------------------------------------------------------------- /Libraries/Teensy/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/BMP180_Breakout/HEAD/Libraries/Teensy/LICENSE.md -------------------------------------------------------------------------------- /Libraries/Teensy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/BMP180_Breakout/HEAD/Libraries/Teensy/README.md -------------------------------------------------------------------------------- /Libraries/Teensy/examples/PressTempAlt/PressTempAlt.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/BMP180_Breakout/HEAD/Libraries/Teensy/examples/PressTempAlt/PressTempAlt.ino -------------------------------------------------------------------------------- /Libraries/Teensy/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/BMP180_Breakout/HEAD/Libraries/Teensy/keywords.txt -------------------------------------------------------------------------------- /Libraries/Teensy/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/BMP180_Breakout/HEAD/Libraries/Teensy/library.properties -------------------------------------------------------------------------------- /Libraries/Teensy/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/BMP180_Breakout/HEAD/Libraries/Teensy/src/README.md -------------------------------------------------------------------------------- /Libraries/Teensy/src/Teensy_BMP180.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/BMP180_Breakout/HEAD/Libraries/Teensy/src/Teensy_BMP180.cpp -------------------------------------------------------------------------------- /Libraries/Teensy/src/Teensy_BMP180.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/BMP180_Breakout/HEAD/Libraries/Teensy/src/Teensy_BMP180.h -------------------------------------------------------------------------------- /Libraries/Teensy/utilyt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/BMP180_Breakout/HEAD/Libraries/Teensy/utilyt/README.md -------------------------------------------------------------------------------- /Libraries/Teensy/utilyt/Teensy_BMP180.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/BMP180_Breakout/HEAD/Libraries/Teensy/utilyt/Teensy_BMP180.cpp -------------------------------------------------------------------------------- /Libraries/Teensy/utilyt/Teensy_BMP180.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/BMP180_Breakout/HEAD/Libraries/Teensy/utilyt/Teensy_BMP180.h -------------------------------------------------------------------------------- /Production/BMP180-Breakout-Panel-v10.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/BMP180_Breakout/HEAD/Production/BMP180-Breakout-Panel-v10.brd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/BMP180_Breakout/HEAD/README.md -------------------------------------------------------------------------------- /hardware/SparkFun_BMP180_Breakout.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/BMP180_Breakout/HEAD/hardware/SparkFun_BMP180_Breakout.brd -------------------------------------------------------------------------------- /hardware/SparkFun_BMP180_Breakout.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/BMP180_Breakout/HEAD/hardware/SparkFun_BMP180_Breakout.sch --------------------------------------------------------------------------------