hybridgroup.gobot/examples/firmata_led_brightness.go

55 lines
939 B
Go
Raw Permalink Normal View History

//go:build example
// +build example
//
// Do not build by default.
/*
How to run
Pass serial port to use as the first param:
go run examples/firmata_led_brightness.go /dev/ttyACM0
*/
package main
import (
"fmt"
"os"
2014-07-10 07:51:00 +08:00
"time"
"gobot.io/x/gobot/v2"
"gobot.io/x/gobot/v2/drivers/gpio"
"gobot.io/x/gobot/v2/platforms/firmata"
)
func main() {
firmataAdaptor := firmata.NewAdaptor(os.Args[1])
led := gpio.NewLedDriver(firmataAdaptor, "3")
work := func() {
brightness := uint8(0)
2014-06-11 06:16:11 +08:00
fadeAmount := uint8(15)
2014-06-07 09:58:04 +08:00
gobot.Every(100*time.Millisecond, func() {
if err := led.Brightness(brightness); err != nil {
fmt.Println(err)
}
2014-06-11 06:16:11 +08:00
brightness = brightness + fadeAmount
if brightness == 0 || brightness == 255 {
2014-06-11 06:16:11 +08:00
fadeAmount = -fadeAmount
}
})
}
2014-07-09 09:36:14 +08:00
robot := gobot.NewRobot("pwmBot",
[]gobot.Connection{firmataAdaptor},
[]gobot.Device{led},
work,
)
if err := robot.Start(); err != nil {
panic(err)
}
}