59 lines
1019 B
Go
59 lines
1019 B
Go
//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_curie_imu_tap_detect.go /dev/ttyACM0
|
|
*/
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
"os"
|
|
"time"
|
|
|
|
"gobot.io/x/gobot/v2"
|
|
"gobot.io/x/gobot/v2/drivers/gpio"
|
|
"gobot.io/x/gobot/v2/platforms/firmata"
|
|
"gobot.io/x/gobot/v2/platforms/intel-iot/curie"
|
|
)
|
|
|
|
func main() {
|
|
firmataAdaptor := firmata.NewAdaptor(os.Args[1])
|
|
led := gpio.NewLedDriver(firmataAdaptor, "13")
|
|
imu := curie.NewIMUDriver(firmataAdaptor)
|
|
|
|
work := func() {
|
|
_ = imu.On("Tap", func(data interface{}) {
|
|
log.Println("Tap", data)
|
|
})
|
|
|
|
gobot.Every(1*time.Second, func() {
|
|
if err := led.Toggle(); err != nil {
|
|
fmt.Println(err)
|
|
}
|
|
})
|
|
|
|
if err := imu.EnableTapDetection(true); err != nil {
|
|
fmt.Println(err)
|
|
}
|
|
}
|
|
|
|
robot := gobot.NewRobot("curieBot",
|
|
[]gobot.Connection{firmataAdaptor},
|
|
[]gobot.Device{imu, led},
|
|
work,
|
|
)
|
|
|
|
if err := robot.Start(); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|