2016-08-26 13:51:40 +08:00
|
|
|
# MegaPi
|
|
|
|
|
|
|
|
The [MegaPi](http://learn.makeblock.com/en/megapi/) is a motor controller by MakeBlock that is compatible with the Raspberry Pi.
|
|
|
|
|
|
|
|
The code is based on a python implementation that can be found [here](https://github.com/Makeblock-official/PythonForMegaPi).
|
|
|
|
|
|
|
|
## How to Install
|
|
|
|
|
|
|
|
```
|
2017-06-10 18:59:19 +08:00
|
|
|
go get -d -u gobot.io/x/gobot/...
|
2016-08-26 13:51:40 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
## How to Use
|
|
|
|
|
|
|
|
```go
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2016-12-08 20:24:03 +08:00
|
|
|
"gobot.io/x/gobot"
|
|
|
|
"gobot.io/x/gobot/platforms/megapi"
|
2016-08-26 13:51:40 +08:00
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
// use "/dev/ttyUSB0" if connecting with USB cable
|
|
|
|
// use "/dev/ttyAMA0" on devices older than Raspberry Pi 3 Model B
|
2016-09-26 03:49:32 +08:00
|
|
|
megaPiAdaptor := megapi.NewAdaptor("/dev/ttyS0")
|
|
|
|
motor := megapi.NewMotorDriver(megaPiAdaptor, 1)
|
2016-08-26 13:51:40 +08:00
|
|
|
|
|
|
|
work := func() {
|
|
|
|
speed := int16(0)
|
|
|
|
fadeAmount := int16(30)
|
|
|
|
|
|
|
|
gobot.Every(100*time.Millisecond, func() {
|
|
|
|
motor.Speed(speed)
|
|
|
|
speed = speed + fadeAmount
|
|
|
|
if speed == 0 || speed == 300 {
|
|
|
|
fadeAmount = -fadeAmount
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
robot := gobot.NewRobot("megaPiBot",
|
|
|
|
[]gobot.Connection{megaPiAdaptor},
|
|
|
|
[]gobot.Device{motor},
|
|
|
|
work,
|
|
|
|
)
|
|
|
|
|
2016-10-19 03:37:10 +08:00
|
|
|
robot.Start()
|
2016-08-26 13:51:40 +08:00
|
|
|
}
|
|
|
|
```
|