embd/samples/bmp085.go

49 lines
740 B
Go
Raw Normal View History

2014-03-02 08:06:34 +01:00
// +build ignore
2013-12-07 18:41:06 +01:00
package main
import (
"flag"
"fmt"
2013-12-07 18:41:06 +01:00
"time"
2014-03-02 20:21:23 +01:00
"github.com/kidoman/embd"
2014-02-10 00:35:41 +01:00
"github.com/kidoman/embd/sensor/bmp085"
_ "github.com/kidoman/embd/host/all"
2013-12-07 18:41:06 +01:00
)
func main() {
flag.Parse()
2014-03-02 20:21:23 +01:00
if err := embd.InitI2C(); err != nil {
panic(err)
}
2014-03-02 20:21:23 +01:00
defer embd.CloseI2C()
2014-03-02 20:21:23 +01:00
bus := embd.NewI2CBus(1)
2013-12-07 18:41:06 +01:00
baro := bmp085.New(bus)
defer baro.Close()
for {
temp, err := baro.Temperature()
if err != nil {
panic(err)
2013-12-07 18:41:06 +01:00
}
fmt.Printf("Temp is %v\n", temp)
2013-12-07 18:41:06 +01:00
pressure, err := baro.Pressure()
if err != nil {
panic(err)
2013-12-07 18:41:06 +01:00
}
fmt.Printf("Pressure is %v\n", pressure)
2013-12-07 18:41:06 +01:00
altitude, err := baro.Altitude()
if err != nil {
panic(err)
2013-12-07 18:41:06 +01:00
}
fmt.Printf("Altitude is %v\n", altitude)
2013-12-07 18:41:06 +01:00
time.Sleep(500 * time.Millisecond)
}
}