1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-04-27 13:48:56 +08:00
hybridgroup.gobot/examples/firmata_servo.go

29 lines
632 B
Go
Raw Normal View History

package main
import (
"fmt"
"github.com/hybridgroup/gobot"
2014-05-22 19:22:14 -07:00
"github.com/hybridgroup/gobot/platforms/firmata"
"github.com/hybridgroup/gobot/platforms/gpio"
"time"
)
func main() {
2014-05-22 19:22:14 -07:00
gbot := gobot.NewGobot()
firmataAdaptor := firmata.NewFirmataAdaptor("firmata", "/dev/ttyACM0")
servo := gpio.NewServoDriver(firmataAdaptor, "servo", "3")
work := func() {
2014-05-22 19:22:14 -07:00
gobot.Every(1*time.Second, func() {
i := uint8(gobot.Rand(180))
fmt.Println("Turning", i)
servo.Move(i)
})
}
2014-06-10 15:16:11 -07:00
gbot.Robots = append(gbot.Robots,
2014-05-22 19:22:14 -07:00
gobot.NewRobot("servoBot", []gobot.Connection{firmataAdaptor}, []gobot.Device{servo}, work))
2014-06-10 15:16:11 -07:00
gbot.Start()
}