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

44 lines
676 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 (
"log"
"time"
"github.com/kidoman/embd/i2c"
2014-02-10 05:05:41 +05:30
"github.com/kidoman/embd/sensor/bmp180"
2014-01-01 03:10:32 +05:30
)
func main() {
if err := i2c.Open(); err != nil {
panic(err)
}
defer i2c.Close()
bus := i2c.NewBus(1)
2014-01-01 03:10:32 +05:30
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)
}
}