Add info for BMP fork in code

This commit is contained in:
Mathieu Maret 2016-04-07 13:37:55 +02:00
parent 9646eab78f
commit 0a2f18b8ee
1 changed files with 1 additions and 0 deletions

View File

@ -1,6 +1,7 @@
#ifdef CONFIG_ENABLE_BMP180
#include "BMP180.h"
int BMP180Setup(int sda, int scl) {
//Use BMP fork at https://github.com/mmaret/BMP180_Breakout_Arduino_Library/archive/master.zip
bmp180Connected = bmp180.begin(sda, scl);
return bmp180Connected;
}