mirror of
https://github.com/kidoman/embd
synced 2024-10-31 23:38:44 +01:00
c35deeb17c
this ensures cleaner abstractions/code and will ensure that the produced binary is as small as possible. a convenience package is provided to easily load all hosts easily: "github.com/kidoman/embd/host/all"
53 lines
791 B
Go
53 lines
791 B
Go
// +build ignore
|
|
|
|
package main
|
|
|
|
import (
|
|
"flag"
|
|
"fmt"
|
|
"os"
|
|
"os/signal"
|
|
"time"
|
|
|
|
"github.com/kidoman/embd"
|
|
"github.com/kidoman/embd/sensor/l3gd20"
|
|
|
|
_ "github.com/kidoman/embd/host/all"
|
|
)
|
|
|
|
func main() {
|
|
flag.Parse()
|
|
|
|
if err := embd.InitI2C(); err != nil {
|
|
panic(err)
|
|
}
|
|
defer embd.CloseI2C()
|
|
|
|
bus := embd.NewI2CBus(1)
|
|
|
|
gyro := l3gd20.New(bus, l3gd20.R250DPS)
|
|
defer gyro.Close()
|
|
|
|
gyro.Start()
|
|
|
|
quit := make(chan os.Signal, 1)
|
|
signal.Notify(quit, os.Interrupt, os.Kill)
|
|
|
|
orientations, err := gyro.Orientations()
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
timer := time.Tick(250 * time.Millisecond)
|
|
|
|
for {
|
|
select {
|
|
case <-timer:
|
|
orientation := <-orientations
|
|
fmt.Printf("x: %v, y: %v, z: %v\n", orientation.X, orientation.Y, orientation.Z)
|
|
case <-quit:
|
|
return
|
|
}
|
|
}
|
|
}
|