2014-04-28 19:23:15 +08:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/hybridgroup/gobot"
|
2014-05-23 11:13:38 +08:00
|
|
|
"github.com/hybridgroup/gobot/api"
|
|
|
|
"github.com/hybridgroup/gobot/platforms/digispark"
|
|
|
|
"github.com/hybridgroup/gobot/platforms/gpio"
|
2014-04-28 19:23:15 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2014-06-07 09:11:26 +08:00
|
|
|
gbot := gobot.NewGobot()
|
2014-07-09 09:36:14 +08:00
|
|
|
|
2014-06-11 06:16:11 +08:00
|
|
|
api.NewAPI(gbot).Start()
|
2014-04-28 19:23:15 +08:00
|
|
|
|
2014-05-23 11:13:38 +08:00
|
|
|
digisparkAdaptor := digispark.NewDigisparkAdaptor("Digispark")
|
2014-07-10 07:51:00 +08:00
|
|
|
led := gpio.NewLedDriver(digisparkAdaptor, "led", "0")
|
2014-07-09 09:36:14 +08:00
|
|
|
|
|
|
|
robot := gobot.NewRobot("digispark",
|
|
|
|
[]gobot.Connection{digisparkAdaptor},
|
|
|
|
[]gobot.Device{led},
|
|
|
|
)
|
|
|
|
|
|
|
|
gbot.AddRobot(robot)
|
2014-04-28 19:23:15 +08:00
|
|
|
|
2014-05-23 11:13:38 +08:00
|
|
|
gbot.Start()
|
2014-04-28 19:23:15 +08:00
|
|
|
}
|