Use following constructors if you want to create a BMP085 from your python scripts.
Parameters:
from webiopi.devices.sensor import BMP085
# Setup a BMP085 with no altitude or external sensor
bmp = BMP085()
# Setup a Temperature sensor for pressure compensation
tmp = DS18B20(...)
# Setup a BMP085 with the external temperature sensor for pressure compensation
bmp = BMP085(altitude=100, external=tmp)
Use following syntax to setup a BMP085 in the webiopi service/command configuration file.
[DEVICES]
# Setup a BMP085 with no altitude or external sensor
bmp = BMP085
# Setup a Temperature sensor for pressure compensation
tmp = DS18B20
# Setup a BMP085 with the external temperature sensor for pressure compensation
bmp = BMP085 altitude:100 external:tmp