46 lines
930 B
Go
46 lines
930 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 -u -d gobot.io/x/gobot/platforms/digispark
|
|
|
|
Example:
|
|
|
|
package main
|
|
|
|
import (
|
|
"time"
|
|
|
|
"gobot.io/x/gobot"
|
|
"gobot.io/x/gobot/drivers/gpio"
|
|
"gobot.io/x/gobot/platforms/digispark"
|
|
)
|
|
|
|
func main() {
|
|
digisparkAdaptor := digispark.NewAdaptor()
|
|
led := gpio.NewLedDriver(digisparkAdaptor, "0")
|
|
|
|
work := func() {
|
|
gobot.Every(1*time.Second, func() {
|
|
led.Toggle()
|
|
})
|
|
}
|
|
|
|
robot := gobot.NewRobot("blinkBot",
|
|
[]gobot.Connection{digisparkAdaptor},
|
|
[]gobot.Device{led},
|
|
work,
|
|
)
|
|
|
|
robot.Start()
|
|
}
|
|
|
|
For further information refer to digispark README:
|
|
https://github.com/hybridgroup/gobot/blob/master/platforms/digispark/README.md
|
|
*/
|
|
package digispark // import "gobot.io/x/gobot/platforms/digispark"
|