hybridgroup.gobot/examples/firmata_hmc6352.go

43 lines
691 B
Go
Raw Normal View History

// +build example
//
// Do not build by default.
/*
How to run
Pass serial port to use as the first param:
go run examples/firmata_hmc6352.go /dev/ttyACM0
*/
package main
import (
"fmt"
"os"
2014-07-11 08:21:21 +08:00
"time"
"gobot.io/x/gobot"
"gobot.io/x/gobot/drivers/i2c"
"gobot.io/x/gobot/platforms/firmata"
)
func main() {
firmataAdaptor := firmata.NewAdaptor(os.Args[1])
hmc6352 := i2c.NewHMC6352Driver(firmataAdaptor)
work := func() {
2014-06-07 09:58:04 +08:00
gobot.Every(100*time.Millisecond, func() {
heading, _ := hmc6352.Heading()
fmt.Println("Heading", heading)
})
}
2014-07-09 09:36:14 +08:00
robot := gobot.NewRobot("hmc6352Bot",
[]gobot.Connection{firmataAdaptor},
[]gobot.Device{hmc6352},
work,
)
robot.Start()
}