40 lines
628 B
Go
40 lines
628 B
Go
// +build example
|
|
//
|
|
// Do not build by default.
|
|
|
|
/*
|
|
To run this example, pass the IP address/port as first param:
|
|
|
|
go run examples/wifi_firmata_blink.go 192.168.0.39:3030
|
|
*/
|
|
|
|
package main
|
|
|
|
import (
|
|
"os"
|
|
"time"
|
|
|
|
"gobot.io/x/gobot"
|
|
"gobot.io/x/gobot/drivers/gpio"
|
|
"gobot.io/x/gobot/platforms/firmata"
|
|
)
|
|
|
|
func main() {
|
|
firmataAdaptor := firmata.NewTCPAdaptor(os.Args[1])
|
|
led := gpio.NewLedDriver(firmataAdaptor, "2")
|
|
|
|
work := func() {
|
|
gobot.Every(1*time.Second, func() {
|
|
led.Toggle()
|
|
})
|
|
}
|
|
|
|
robot := gobot.NewRobot("bot",
|
|
[]gobot.Connection{firmataAdaptor},
|
|
[]gobot.Device{led},
|
|
work,
|
|
)
|
|
|
|
robot.Start()
|
|
}
|