1
0
Fork 0
mirror of https://github.com/kidoman/embd synced 2025-07-03 03:47:33 +02:00

support for bmp180

This commit is contained in:
Karan Misra 2014-01-01 03:10:32 +05:30
parent a578db8606
commit 3d305b9ff0
3 changed files with 519 additions and 0 deletions

38
samples/bmp180.go Normal file
View file

@ -0,0 +1,38 @@
package main
import (
"log"
"time"
"github.com/kid0m4n/go-rpi/i2c"
"github.com/kid0m4n/go-rpi/sensor/bmp180"
)
func main() {
bus, err := i2c.NewBus(1)
if err != nil {
log.Panic(err)
}
baro := bmp180.New(bus)
defer baro.Close()
for {
temp, err := baro.Temperature()
if err != nil {
log.Panic(err)
}
log.Printf("Temp is %v", temp)
pressure, err := baro.Pressure()
if err != nil {
log.Panic(err)
}
log.Printf("Pressure is %v", pressure)
altitude, err := baro.Altitude()
if err != nil {
log.Panic(err)
}
log.Printf("Altitude is %v", altitude)
time.Sleep(500 * time.Millisecond)
}
}