## bmp180-install DOC: https://learn.adafruit.com/using-the-bmp085-with-raspberry-pi/configuring-the-pi-for-i2c Pi header - > BMP180 3v3 (1) -> VIN SDA0 (3) -> SDA SCL0 (5) -> SCL GND (6) -> GND - Switch-on I2C in raspi-config Adv. options > I2C (A7) $ sudo apt-get install python-smbus $ sudo apt-get install i2c-tools $ sudo nano /etc/modules i2c-bcm2708 i2c-dev $ sudo i2cdetect -y 1 (if you are using a version 2 Raspberry Pi) $ sudo python bmp180.py Chip ID : 85 Version : 2 Temperature : 20.7 C Pressure : 1010.21 mbar -.-