embd/samples/l3gd20.go

49 lines
750 B
Go
Raw Normal View History

2014-03-02 08:06:34 +01:00
// +build ignore
2014-01-02 02:20:57 +01:00
package main
import (
"log"
"os"
"os/signal"
2014-01-09 00:56:21 +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/l3gd20"
2014-01-02 02:20:57 +01:00
)
func main() {
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)
2014-01-02 02:20:57 +01:00
gyro := l3gd20.New(bus, l3gd20.R250DPS)
2014-01-09 00:56:21 +01:00
gyro.Debug = true
2014-01-02 02:20:57 +01:00
defer gyro.Close()
gyro.Start()
2014-01-02 02:20:57 +01:00
quit := make(chan os.Signal, 1)
signal.Notify(quit, os.Interrupt, os.Kill)
2014-01-02 02:20:57 +01:00
orientations, err := gyro.Orientations()
if err != nil {
log.Panic(err)
}
2014-01-02 02:20:57 +01:00
2014-01-09 00:56:21 +01:00
timer := time.Tick(250 * time.Millisecond)
for {
select {
2014-01-09 00:56:21 +01:00
case <-timer:
orientation := <-orientations
log.Printf("x: %v, y: %v, z: %v", orientation.X, orientation.Y, orientation.Z)
case <-quit:
return
}
2014-01-02 02:20:57 +01:00
}
}