50 lines
1003 B
Go
50 lines
1003 B
Go
/*
|
|
Package digispark provides the Gobot adaptor for the Digispark ATTiny-based USB development board.
|
|
|
|
Installing:
|
|
|
|
This package requires installing `libusb`.
|
|
Then you can install the package with:
|
|
|
|
go get github.com/hybridgroup/gobot/platforms/digispark
|
|
|
|
Example:
|
|
|
|
package main
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/hybridgroup/gobot"
|
|
"github.com/hybridgroup/gobot/platforms/digispark"
|
|
"github.com/hybridgroup/gobot/platforms/gpio"
|
|
)
|
|
|
|
func main() {
|
|
gbot := gobot.NewGobot()
|
|
|
|
digisparkAdaptor := digispark.NewDigisparkAdaptor("Digispark")
|
|
led := gpio.NewLedDriver(digisparkAdaptor, "led", "0")
|
|
|
|
work := func() {
|
|
gobot.Every(1*time.Second, func() {
|
|
led.Toggle()
|
|
})
|
|
}
|
|
|
|
robot := gobot.NewRobot("blinkBot",
|
|
[]gobot.Connection{digisparkAdaptor},
|
|
[]gobot.Device{led},
|
|
work,
|
|
)
|
|
|
|
gbot.AddRobot(robot)
|
|
|
|
gbot.Start()
|
|
}
|
|
|
|
For further information refer to digispark README:
|
|
https://github.com/hybridgroup/gobot/blob/master/platforms/digispark/README.md
|
|
*/
|
|
package digispark
|