hybridgroup.gobot/examples/firmata_hmc6352.go

34 lines
614 B
Go
Raw Normal View History

package main
import (
"fmt"
2014-07-11 08:21:21 +08:00
"time"
"github.com/hybridgroup/gobot"
2014-05-23 10:22:14 +08:00
"github.com/hybridgroup/gobot/platforms/firmata"
"github.com/hybridgroup/gobot/platforms/i2c"
)
func main() {
2014-05-23 10:22:14 +08:00
gbot := gobot.NewGobot()
2014-07-09 09:36:14 +08:00
firmataAdaptor := firmata.NewFirmataAdaptor("firmata", "/dev/ttyACM0")
2014-05-23 10:22:14 +08:00
hmc6352 := i2c.NewHMC6352Driver(firmataAdaptor, "hmc6352")
work := func() {
2014-06-07 09:58:04 +08:00
gobot.Every(100*time.Millisecond, func() {
fmt.Println("Heading", hmc6352.Heading)
})
}
2014-07-09 09:36:14 +08:00
robot := gobot.NewRobot("hmc6352Bot",
[]gobot.Connection{firmataAdaptor},
[]gobot.Device{hmc6352},
work,
)
gbot.AddRobot(robot)
2014-05-23 10:22:14 +08:00
gbot.Start()
}