1
0
mirror of https://github.com/kidoman/embd synced 2024-12-22 12:50:19 +01:00
embd/samples/bmp180.go

49 lines
740 B
Go
Raw Normal View History

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