1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-04-26 13:48:49 +08:00
hybridgroup.gobot/examples/wifi_firmata_blink.go
deadprogram f2557954f4 docs: add helpful information to examples themselves
Signed-off-by: deadprogram <ron@hybridgroup.com>
2017-06-15 14:04:08 +02:00

47 lines
840 B
Go

// +build example
//
// Do not build by default.
/*
How to setup
You must be using a WiFi-connected microcontroller,
that has been flashed with the WifiFirmata sketch.
You then run the go program on your computer, and communicate
wirelessly with the microcontroller.
How to run
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()
}