2014-03-02 08:06:34 +01:00
|
|
|
// +build ignore
|
|
|
|
|
2014-01-02 02:20:57 +01:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2014-04-04 22:13:16 +02:00
|
|
|
"flag"
|
2014-03-31 15:16:04 +02:00
|
|
|
"fmt"
|
2014-01-07 17:41:41 +01:00
|
|
|
"os"
|
|
|
|
"os/signal"
|
2014-01-09 00:56:21 +01:00
|
|
|
"time"
|
2014-03-01 15:49:44 +01:00
|
|
|
|
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-04-06 03:20:09 +02:00
|
|
|
|
|
|
|
_ "github.com/kidoman/embd/host/all"
|
2014-01-02 02:20:57 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2014-04-04 22:13:16 +02:00
|
|
|
flag.Parse()
|
|
|
|
|
2014-03-02 20:21:23 +01:00
|
|
|
if err := embd.InitI2C(); err != nil {
|
2014-02-26 23:54:53 +01:00
|
|
|
panic(err)
|
|
|
|
}
|
2014-03-02 20:21:23 +01:00
|
|
|
defer embd.CloseI2C()
|
2014-02-26 23:54:53 +01:00
|
|
|
|
2014-03-02 20:21:23 +01:00
|
|
|
bus := embd.NewI2CBus(1)
|
2014-02-07 23:22:06 +01:00
|
|
|
|
2014-01-02 02:20:57 +01:00
|
|
|
gyro := l3gd20.New(bus, l3gd20.R250DPS)
|
|
|
|
defer gyro.Close()
|
|
|
|
|
2014-01-07 17:41:41 +01:00
|
|
|
gyro.Start()
|
2014-01-02 02:20:57 +01:00
|
|
|
|
2014-01-07 17:41:41 +01:00
|
|
|
quit := make(chan os.Signal, 1)
|
|
|
|
signal.Notify(quit, os.Interrupt, os.Kill)
|
2014-01-02 02:20:57 +01:00
|
|
|
|
2014-01-07 17:41:41 +01:00
|
|
|
orientations, err := gyro.Orientations()
|
|
|
|
if err != nil {
|
2014-03-31 15:16:04 +02:00
|
|
|
panic(err)
|
2014-01-07 17:41:41 +01:00
|
|
|
}
|
2014-01-02 02:20:57 +01:00
|
|
|
|
2014-01-09 00:56:21 +01:00
|
|
|
timer := time.Tick(250 * time.Millisecond)
|
|
|
|
|
2014-01-07 17:41:41 +01:00
|
|
|
for {
|
|
|
|
select {
|
2014-01-09 00:56:21 +01:00
|
|
|
case <-timer:
|
|
|
|
orientation := <-orientations
|
2014-03-31 15:16:04 +02:00
|
|
|
fmt.Printf("x: %v, y: %v, z: %v\n", orientation.X, orientation.Y, orientation.Z)
|
2014-01-07 17:41:41 +01:00
|
|
|
case <-quit:
|
|
|
|
return
|
|
|
|
}
|
2014-01-02 02:20:57 +01:00
|
|
|
}
|
|
|
|
}
|