Barometric Presser Sensor to turn Servo

Ok, I have BMP085 sensor, a servo, and a arduino pro mini. I need the arduino to sense when the altitude gets to 750 feet, and then turn the servo, however I am really weak at coding so all help is appriciated. Thanks

LividKiwi:
Ok, I have BMP085 sensor, a servo, and a arduino pro mini. I need the arduino to sense when the altitude gets to 750 feet, and then turn the servo, however I am really weak at coding so all help is appriciated. Thanks

Well weak coding skills or not, just post what you have done so far and wait for the help to come running, as they most certainly will. Otherwise it sounds like a request to have someone write your sketch for you?

Lefty

The example code at sparkfun might help get you started: http://www.sparkfun.com/tutorial/Barometric/BMP085_Example_Code.pde

I know i completely butchered it, I suck at sensors (lol)

#include <Wire.h>
#include <Adafruit_BMP085.h>

void loop() {
Serial.read("Temperature = ");
Serial.read(bmp.readTemperature());
Serial.read ln(" *C");

Serial.read("Altitude = ");
Serial.read(bmp.readAltitude());

Serial.read("Real altitude = ");
Serial.read(bmp.readAltitude(101964));

delay(500);
}