#go-bmp085
A port of Adafruit's Python library for BMP05 to Go.
$ go get github.com/stratoberry/go-bmp085
i2c library by gmcbay is the only dependency.
Library is similar to the one by Adafruit but with a few minor changes to match Go's conventions.
dev, _ := bmp085.Init(0x77, 0, bmp085.MODE_STANDARD)
temperate, pressure, altitude, _ = dev.GetData()
For a full example take a look at the examples/main.go file in the repository.