Thanks to this update, users can determine any i2c buses which they want to connect BMP180.
Teensy devices have more than one i2c buses, but the previous library for Teensy devices just had been supporting only one i2c bus and this bus was determined by library. For using other i2c buses, users had to edit library.
But now! Users can determine in the sketch, any i2c bus which they want to use. Just determine by using Wire0, Wire1, Wire2 etc.
There are /src and /utilyt directories, these libraries do the same task. There is a just difference about dependency;
/src is depend on Wire.h library.
/utilyt is depend on i2c_t3.h library.
Thanks to this update, users can determine any i2c buses which they want to connect BMP180.
Teensy devices have more than one i2c buses, but the previous library for Teensy devices just had been supporting only one i2c bus and this bus was determined by library. For using other i2c buses, users had to edit library.
But now! Users can determine in the sketch, any i2c bus which they want to use. Just determine by using Wire0, Wire1, Wire2 etc.
There are /src and /utilyt directories, these libraries do the same task. There is a just difference about dependency; /src is depend on Wire.h library. /utilyt is depend on i2c_t3.h library.