Go to file
deadprogram 33367e1af7 Adding firmata/mqtt example 2014-11-04 07:12:02 -08:00
api stop request on 401 2014-10-29 13:19:12 -07:00
examples Adding firmata/mqtt example 2014-11-04 07:12:02 -08:00
gobot Update docs 2014-10-28 14:52:59 -07:00
platforms Keep it simple, validate later 2014-11-03 23:27:21 -08:00
scripts Add Edison Support 2014-09-23 21:35:29 -07:00
.gitignore First pass at adding some documentation 2014-08-13 10:22:58 -06:00
.travis.yml Update .travis.yml 2014-11-03 19:17:06 -08:00
CHANGELOG.md Update CHANGELOG.md 2014-07-12 09:53:05 -07:00
LICENSE Initial commit 2013-10-21 14:23:24 -07:00
Makefile Add Edison Support 2014-09-23 21:35:29 -07:00
README.md Update list of platforms/drivers 2014-11-03 17:39:48 -08:00
adaptor.go Adds godoc to api package 2014-10-22 10:04:28 -05:00
adaptor_test.go Add tests for SparkCoreAdaptor's postToSpark 2014-08-21 16:09:41 -05:00
connection.go Adds godoc to api package 2014-10-22 10:04:28 -05:00
device.go Adds godoc to api package 2014-10-22 10:04:28 -05:00
doc.go Update docs 2014-10-28 14:52:59 -07:00
driver.go Adds godoc to api package 2014-10-22 10:04:28 -05:00
driver_test.go Add more driver and adaptor test coverage 2014-07-17 13:07:34 -07:00
event.go Adds godoc to api package 2014-10-22 10:04:28 -05:00
gobot.go First pass at adding some documentation 2014-08-13 10:22:58 -06:00
gobot_test.go Enable custom handlers for api 2014-07-21 22:19:04 -07:00
robot.go First pass at adding some documentation 2014-08-13 10:22:58 -06:00
test_helper.go Add SSE support 2014-08-01 21:37:34 -07:00
utils.go Adds godoc to api package 2014-10-22 10:04:28 -05:00
utils_test.go Fix randomly failing test 2014-10-28 15:50:32 -07:00
version.go Bump dev to 0.7.dev 2014-07-15 09:35:19 -07:00

README.md

Gobot

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 Build Status Coverage Status

Examples

Gobot with Arduino

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

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:

Support for many devices that use General Purpose Input/Output (GPIO) have a shared set of drivers provided using the cylon-gpio module:

  • GPIO <=> Drivers
    • 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 <=> Drivers
    • BlinkM
    • HMC6352
    • Wii Nunchuck Controller

More platforms and drivers are coming soon...

Getting Started

Install Gobot with: go get -u github.com/hybridgroup/gobot

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:

  gbot := gobot.NewGobot()
  api.NewAPI(gbot).Start()

You can also specify the api host and port, and turn on authentication:

  gbot := gobot.NewGobot()
  server := api.NewAPI(gbot)
  server.Port = "4000"
  server.Username = "Gort"
  server.Password = "klaatu"
  server.Start()

You may access the 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!

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 which is an awesome (and free) book on git

License

Copyright (c) 2013-2014 The Hybrid Group. Licensed under the Apache 2.0 license.