192 lines
7.4 KiB
Markdown
192 lines
7.4 KiB
Markdown
[![Gobot](https://cdn.rawgit.com/hybridgroup/gobot-site/master/source/images/elements/gophy.png)](http://gobot.io/)
|
|
|
|
http://gobot.io/
|
|
|
|
Gobot is a framework using the Go programming language (http://golang.org/) for robotics, physical computing, and the Internet of Things.
|
|
|
|
It provides a simple, yet powerful way to create solutions that incorporate multiple, different hardware devices at the same time.
|
|
|
|
Want to use Ruby or Javascript on robots? Check out our sister projects Artoo (http://artoo.io) and Cylon.js (http://cylonjs.com/)
|
|
|
|
[![GoDoc](https://godoc.org/github.com/hybridgroup/gobot?status.svg)](https://godoc.org/github.com/hybridgroup/gobot)
|
|
[![Build Status](https://travis-ci.org/hybridgroup/gobot.png?branch=master)](https://travis-ci.org/hybridgroup/gobot) [![Coverage Status](https://coveralls.io/repos/hybridgroup/gobot/badge.png?branch=master)](https://coveralls.io/r/hybridgroup/gobot?branch=master)
|
|
|
|
## Getting Started
|
|
|
|
Get the Gobot source with: `go get -d -u github.com/hybridgroup/gobot/...`
|
|
|
|
## Examples
|
|
|
|
#### Gobot with Arduino
|
|
|
|
```go
|
|
package main
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/hybridgroup/gobot"
|
|
"github.com/hybridgroup/gobot/platforms/firmata"
|
|
"github.com/hybridgroup/gobot/platforms/gpio"
|
|
)
|
|
|
|
func main() {
|
|
gbot := gobot.NewGobot()
|
|
|
|
firmataAdaptor := firmata.NewFirmataAdaptor("arduino", "/dev/ttyACM0")
|
|
led := gpio.NewLedDriver(firmataAdaptor, "led", "13")
|
|
|
|
work := func() {
|
|
gobot.Every(1*time.Second, func() {
|
|
led.Toggle()
|
|
})
|
|
}
|
|
|
|
robot := gobot.NewRobot("bot",
|
|
[]gobot.Connection{firmataAdaptor},
|
|
[]gobot.Device{led},
|
|
work,
|
|
)
|
|
|
|
gbot.AddRobot(robot)
|
|
|
|
gbot.Start()
|
|
}
|
|
```
|
|
|
|
#### Gobot with Sphero
|
|
|
|
```go
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/hybridgroup/gobot"
|
|
"github.com/hybridgroup/gobot/platforms/sphero"
|
|
)
|
|
|
|
func main() {
|
|
gbot := gobot.NewGobot()
|
|
|
|
adaptor := sphero.NewSpheroAdaptor("sphero", "/dev/rfcomm0")
|
|
driver := sphero.NewSpheroDriver(adaptor, "sphero")
|
|
|
|
work := func() {
|
|
gobot.Every(3*time.Second, func() {
|
|
driver.Roll(30, uint16(gobot.Rand(360)))
|
|
})
|
|
}
|
|
|
|
robot := gobot.NewRobot("sphero",
|
|
[]gobot.Connection{adaptor},
|
|
[]gobot.Device{driver},
|
|
work,
|
|
)
|
|
|
|
gbot.AddRobot(robot)
|
|
|
|
gbot.Start()
|
|
}
|
|
```
|
|
|
|
## Hardware Support
|
|
Gobot has a extensible system for connecting to hardware devices. The following robotics and physical computing platforms are currently supported:
|
|
|
|
- [Ardrone](http://ardrone2.parrot.com/) <=> [Library](https://github.com/hybridgroup/gobot/tree/master/platforms/ardrone)
|
|
- [Arduino](http://www.arduino.cc/) <=> [Library](https://github.com/hybridgroup/gobot/tree/master/platforms/firmata)
|
|
- [Beaglebone Black](http://beagleboard.org/Products/BeagleBone+Black/) <=> [Library](https://github.com/hybridgroup/gobot/tree/master/platforms/beaglebone)
|
|
- [Digispark](http://digistump.com/products/1) <=> [Library](https://github.com/hybridgroup/gobot/tree/master/platforms/digispark)
|
|
- [Intel Edison](http://www.intel.com/content/www/us/en/do-it-yourself/edison.html) <=> [Library](https://github.com/hybridgroup/gobot/tree/master/platforms/intel-iot/edison)
|
|
- [Joystick](http://en.wikipedia.org/wiki/Joystick) <=> [Library](https://github.com/hybridgroup/gobot/tree/master/platforms/joystick)
|
|
- [Leap Motion](https://www.leapmotion.com/) <=> [Library](https://github.com/hybridgroup/gobot/tree/master/platforms/leapmotion)
|
|
- [MavLink](http://qgroundcontrol.org/mavlink/start) <=> [Library](https://github.com/hybridgroup/gobot/tree/master/platforms/mavlinky)
|
|
- [MQTT](http://mqtt.org/) <=> [Library](https://github.com/hybridgroup/gobot/tree/master/platforms/mqtt)
|
|
- [Neurosky](http://neurosky.com/products-markets/eeg-biosensors/hardware/) <=> [Library](https://github.com/hybridgroup/gobot/tree/master/platforms/neurosky)
|
|
- [OpenCV](http://opencv.org/) <=> [Library](https://github.com/hybridgroup/gobot/tree/master/platforms/opencv)
|
|
- [Pebble](https://www.getpebble.com/) <=> [Library](https://github.com/hybridgroup/gobot/tree/master/platforms/pebble)
|
|
- [Raspberry Pi](http://www.raspberrypi.org/) <=> [Library](https://github.com/hybridgroup/gobot/tree/master/platforms/raspi)
|
|
- [Spark](https://www.spark.io/) <=> [Library](https://github.com/hybridgroup/gobot/tree/master/platforms/spark)
|
|
- [Sphero](http://www.gosphero.com/) <=> [Library](https://github.com/hybridgroup/gobot/tree/master/platforms/sphero)
|
|
|
|
|
|
Support for many devices that use General Purpose Input/Output (GPIO) have
|
|
a shared set of drivers provided using the cylon-gpio module:
|
|
|
|
- [GPIO](https://en.wikipedia.org/wiki/General_Purpose_Input/Output) <=> [Drivers](https://github.com/hybridgroup/gobot/tree/master/platforms/gpio)
|
|
- Analog Sensor
|
|
- Button
|
|
- Direct Pin
|
|
- Digital Sensor
|
|
- Direct Pin
|
|
- LED
|
|
- MakeyButton
|
|
- Motor
|
|
- Servo
|
|
|
|
Support for devices that use Inter-Integrated Circuit (I2C) have a shared set of
|
|
drivers provided using the gobot-i2c module:
|
|
|
|
- [I2C](https://en.wikipedia.org/wiki/I%C2%B2C) <=> [Drivers](https://github.com/hybridgroup/gobot/tree/master/platforms/i2c)
|
|
- BlinkM
|
|
- HMC6352
|
|
- MPL1150A2
|
|
- MPU6050
|
|
- Wii Nunchuck Controller
|
|
|
|
More platforms and drivers are coming soon...
|
|
|
|
## API:
|
|
|
|
Gobot includes a RESTful API to query the status of any robot running within a group, including the connection and device status, and execute device commands.
|
|
|
|
To activate the API, require the `github.com/hybridgroup/gobot/api` package and instantiate the `API` like this:
|
|
|
|
```go
|
|
gbot := gobot.NewGobot()
|
|
api.NewAPI(gbot).Start()
|
|
```
|
|
|
|
You can also specify the api host and port, and turn on authentication:
|
|
```go
|
|
gbot := gobot.NewGobot()
|
|
server := api.NewAPI(gbot)
|
|
server.Port = "4000"
|
|
server.Username = "Gort"
|
|
server.Password = "klaatu"
|
|
server.Start()
|
|
```
|
|
|
|
You may access the [robeaux](https://github.com/hybridgroup/robeaux) AngularJS interface with Gobot by navigating to `http://localhost:3000/index.html`.
|
|
|
|
## Documentation
|
|
We're busy adding documentation to our web site at http://gobot.io/ please check there as we continue to work on Gobot
|
|
|
|
Thank you!
|
|
|
|
## Need help?
|
|
* Join our mailing list: https://groups.google.com/forum/#!forum/gobotio
|
|
* IRC: `#gobotio @ irc.freenode.net`
|
|
* Issues: https://github.com/hybridgroup/gobot/issues
|
|
* twitter: [@gobotio](https://twitter.com/gobotio)
|
|
|
|
## Contributing
|
|
* All active development is in the `dev` branch. New or updated features must be added to the `dev` branch. Hotfixes will be considered on the `master` branch in situations where it does not alter behaviour or features, only fixes a bug.
|
|
* All patches must be provided under the Apache 2.0 License
|
|
* Please use the -s option in git to "sign off" that the commit is your work and you are providing it under the Apache 2.0 License
|
|
* Submit a Github Pull Request to the appropriate branch and ideally discuss the changes with us in IRC.
|
|
* We will look at the patch, test it out, and give you feedback.
|
|
* Avoid doing minor whitespace changes, renamings, etc. along with merged content. These will be done by the maintainers from time to time but they can complicate merges and should be done seperately.
|
|
* Take care to maintain the existing coding style.
|
|
* `golint` and `go fmt` your code.
|
|
* Add unit tests for any new or changed functionality.
|
|
* All pull requests should be "fast forward"
|
|
* If there are commits after yours use “git rebase -i <new_head_branch>”
|
|
* If you have local changes you may need to use “git stash”
|
|
* For git help see [progit](http://git-scm.com/book) which is an awesome (and free) book on git
|
|
|
|
|
|
## License
|
|
Copyright (c) 2013-2015 The Hybrid Group. Licensed under the Apache 2.0 license.
|