BMP805 Sensor example
A new sensor breakout I got recently the BMP05 Barometric, pressure and Temperature sensor. #include <Wire.h> #include <Adafruit_BMP085.h> Adafruit_BMP085 bmp; void setup() { Serial.begin(9600); if (!bmp.begin()) { Serial.println(“Could not…