Having troubles connecting BMP180 and DHT 22

I have two sensors that im trying to get data from and send to a website called Dweet.io. The DHT sensor is working perfectly and sending the humidity and temp, but the BMP180 i cannot figure of how to import the right lines of code to get it to send its data for altitude,calculated altitude,pressure and sea level pressure. Can anyone show me what i am doing wrong.

// Libraries
#include <Adafruit_CC3000.h>
#include <SPI.h>
#include "DHT.h"
#include <avr/wdt.h>
#include <Wire.h>
#include <Adafruit_BMP085.h>

// Define CC3000 chip pins
#define ADAFRUIT_CC3000_IRQ 3
#define ADAFRUIT_CC3000_VBAT 5
#define ADAFRUIT_CC3000_CS 10

// DHT sensor
#define DHTPIN 7
#define DHTTYPE DHT22

// Barometer

// Create CC3000 instances
Adafruit_CC3000 cc3000 = Adafruit_CC3000(ADAFRUIT_CC3000_CS, ADAFRUIT_CC3000_IRQ, ADAFRUIT_CC3000_VBAT,
SPI_CLOCK_DIV2); // you can change this clock speed

// DHT instance
DHT dht(DHTPIN, DHTTYPE);
Adafruit_BMP085 bmp;

// WLAN parameters
#define WLAN_SSID "SCTCC Wireless"
#define WLAN_PASS "cyclones"
#define WLAN_SECURITY WLAN_SEC_WPA2

// Dweet parameters
#define thing_name "unkempt-dog"

// Variables to be sent
int temperature;
int humidity;
int pressure;
int altitude;

uint32_t ip;

void setup(void)
{

// Initialize
Serial.begin(9600);
if (!bmp.begin())

Serial.println(F("\nInitializing..."));
if (!cc3000.begin())
{
Serial.println(F("Couldn't begin()! Check your wiring?"));
while(1);
}

// Connect to WiFi network
Serial.print(F("Connecting to WiFi network ..."));
cc3000.connectToAP(WLAN_SSID, WLAN_PASS, WLAN_SECURITY);
Serial.println(F("done!"));

/* Wait for DHCP to complete */
Serial.println(F("Request DHCP"));
while (!cc3000.checkDHCP())
{
delay(100);
}
}

void loop(void)
{

// Measure from DHT
float t = dht.readTemperature(true);
float h = dht.readHumidity();
temperature = (int)t;
humidity = (int)h;
// measure from Barometer
float pressure =bmp.readPressure();
pressure = (int)pressure;
float meters= bmp.readAltitude();
altitude= (int) meters;
// Start watchdog
wdt_enable(WDTO_8S);

// Get IP
uint32_t ip = 0;
Serial.print(F("www.dweet.io -> "));
while (ip == 0) {
if (! cc3000.getHostByName("www.dweet.io", &ip)) {
Serial.println(F("Couldn't resolve!"));
}
delay(500);
}
cc3000.printIPdotsRev(ip);
Serial.println(F(""));

// Reset watchdog
wdt_reset();

// Check connection to WiFi
Serial.print(F("Checking WiFi connection ..."));
if(!cc3000.checkConnected()){while(1){}}
Serial.println(F("done."));
wdt_reset();

// Send request
Adafruit_CC3000_Client client = cc3000.connectTCP(ip, 80);
if (client.connected()) {
Serial.print(F("Sending request... "));

client.fastrprint(F("GET /dweet/for/"));
client.print(thing_name);
client.fastrprint(F("?temperature="));
client.print(temperature);
client.fastrprint(F("&humidity="));
client.print(humidity);
client.fastrprint(F("&pressure="));
client.print(pressure);
client.fastrprint(F("&altitude="));
client.print(altitude);

client.fastrprintln(F(" HTTP/1.1"));

client.fastrprintln(F("Host: dweet.io"));
client.fastrprintln(F("Connection: close"));
client.fastrprintln(F(""));

Serial.println(F("done."));
} else {
Serial.println(F("Connection failed"));
return;
}

// Reset watchdog
wdt_reset();

Serial.println(F("Reading answer..."));
while (client.connected()) {
while (client.available()) {
char c = client.read();
Serial.print(c);
}
}
Serial.println(F(""));

// Reset watchdog
wdt_reset();

// Close connection and disconnect
client.close();
Serial.println(F("Closing connection"));
Serial.println(F(""));

// Reset watchdog & disable
wdt_reset();
wdt_disable();

// Wait 60 seconds until next update
wait(60000);

}

// Wait for a given time using the watchdog
void wait(int total_delay) {

int number_steps = (int)(total_delay/5000);
wdt_enable(WDTO_8S);
for (int i = 0; i < number_steps; i++){
//Serial.println(F("Waiting for 5 seconds ..."));
delay(5000);
wdt_reset();
}
wdt_disable();
}

Put your code betwen code tag ---> icon </>

I would like to incorporate
this line of code to get the readings off BMP180

Serial.print("Pressure = ");
//Serial.print(bmp.readPressure());
Pa=bmp.readPressure();
InHg=Pa*0.000295333727;
Serial.print(InHg);
Serial.println(" In Hg");

// Calculate altitude assuming 'standard' barometric
// pressure of 1013.25 millibar = 101325 Pascal
Serial.print("Altitude = ");
//Serial.print(bmp.readAltitude());
Am=bmp.readAltitude(101550); //adjusted for local altitude
Af=Am*3.28084;
Serial.print(Af);
Serial.println(" feet");

// you can get a more precise measurement of altitude
// if you know the current sea level pressure which will
// vary with weather and such. If it is 1015 millibars
// that is equal to 101500 Pascals.
// Serial.print("Real altitude = ");
// Serial.print(bmp.readAltitude(101500));
// Serial.println(" meters");

The sensor BMP180 that you are using involves I2C interfacing for communication with the MCU unit.

So, you can try this code BMP180 Arduino code that has altitude, pressure and temperature as output. Try this one individually for the sensor and then incorporate the same into your main code.

Also, check the I2C connections by connecting only BMP180 with the board and running the i2c scanner code. You will get the right device address if all your connections are okay. Then, send the values using CC3000 .