hybridgroup.gobot/examples/firmata_buzzer.go

64 lines
1.1 KiB
Go
Raw Normal View History

// +build example
//
// Do not build by default.
/*
How to run
Pass serial port to use as the first param:
go run examples/firmata_buzzer.go /dev/ttyACM0
*/
2015-07-04 10:03:31 +08:00
package main
import (
"os"
2015-07-04 10:03:31 +08:00
"time"
"gobot.io/x/gobot"
"gobot.io/x/gobot/drivers/gpio"
"gobot.io/x/gobot/platforms/firmata"
2015-07-04 10:03:31 +08:00
)
func main() {
firmataAdaptor := firmata.NewAdaptor(os.Args[1])
buzzer := gpio.NewBuzzerDriver(firmataAdaptor, "3")
2015-07-04 10:03:31 +08:00
work := func() {
type note struct {
tone float64
duration float64
}
song := []note{
{gpio.C4, gpio.Quarter},
{gpio.C4, gpio.Quarter},
{gpio.G4, gpio.Quarter},
{gpio.G4, gpio.Quarter},
{gpio.A4, gpio.Quarter},
{gpio.A4, gpio.Quarter},
{gpio.G4, gpio.Half},
{gpio.F4, gpio.Quarter},
{gpio.F4, gpio.Quarter},
{gpio.E4, gpio.Quarter},
{gpio.E4, gpio.Quarter},
{gpio.D4, gpio.Quarter},
{gpio.D4, gpio.Quarter},
{gpio.C4, gpio.Half},
}
for _, val := range song {
buzzer.Tone(val.tone, val.duration)
time.Sleep(10 * time.Millisecond)
2015-07-04 10:03:31 +08:00
}
}
robot := gobot.NewRobot("bot",
[]gobot.Connection{firmataAdaptor},
[]gobot.Device{buzzer},
work,
)
robot.Start()
2015-07-04 10:03:31 +08:00
}