Go to file
Adrian Zankich 345b60d2ab Update api robeaux api compatibility 2014-04-18 22:44:50 -07:00
examples Add basic auth support to api 2014-04-18 15:45:42 -07:00
gobot Update generated driver 2014-04-16 16:06:51 -07:00
.travis.yml Remove Travis build from IRC 2014-04-18 00:21:53 -07:00
Godeps Use go-martini/martini 2014-04-07 09:22:23 -07:00
LICENSE Initial commit 2013-10-21 14:23:24 -07:00
README.md Add Joystick & Neurosky platforms to README 2014-04-18 00:15:07 -07:00
adaptor.go Remove Reconnect and Disconnect from AdaptorInterface 2014-04-15 19:26:07 -07:00
api.go Update api robeaux api compatibility 2014-04-18 22:44:50 -07:00
api_test.go Green tests 2014-04-18 14:45:50 -07:00
connection.go Update api robeaux api compatibility 2014-04-18 22:44:50 -07:00
device.go Update api robeaux api compatibility 2014-04-18 22:44:50 -07:00
driver.go Add Init function to DriverInterface 2014-03-31 15:26:35 -07:00
gobot_suite_test.go refactor tests 2014-04-11 06:02:21 -07:00
master.go Change startApi to private function 2014-04-18 18:12:38 -07:00
master_test.go Green tests 2014-04-18 14:45:50 -07:00
robot.go Update api robeaux api compatibility 2014-04-18 22:44:50 -07:00
robot_test.go WIP api tests 2014-04-15 17:59:44 -07:00
test_helper.go Add utils tests 2014-04-15 21:10:32 -07:00
utils.go Remove ConnectToSerial 2014-04-16 13:18:45 -07:00
utils_test.go Remove ConnectToTcp util 2014-04-16 12:38:09 -07:00

README.md

Gobot

http://gobot.io/

Gobot is a framework and set of libraries 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/)

Build Status Coverage Status

Examples

Basic

Go with a Sphero

package main

import (
  "github.com/hybridgroup/gobot"
  "github.com/hybridgroup/gobot-sphero"
)

func main() {

  spheroAdaptor := new(gobotSphero.SpheroAdaptor)
  spheroAdaptor.Name = "Sphero"
  spheroAdaptor.Port = "/dev/rfcomm0"

  sphero := gobotSphero.NewSphero(spheroAdaptor)
  sphero.Name = "Sphero"

  work := func() {
    gobot.Every("2s", func() {
      sphero.Roll(100, uint16(gobot.Rand(360)))
    })
  }

  robot := gobot.Robot{
    Connections: []gobot.Connection{spheroAdaptor},
    Devices:     []gobot.Device{sphero},
    Work:        work,
  }

  robot.Start()
}
package main

import (
  "github.com/hybridgroup/gobot"
  "github.com/hybridgroup/gobot-firmata"
  "github.com/hybridgroup/gobot-gpio"
)

func main() {

  firmata := new(gobotFirmata.FirmataAdaptor)
  firmata.Name = "firmata"
  firmata.Port = "/dev/ttyACM0"

  led := gobotGPIO.NewLed(firmata)
  led.Name = "led"
  led.Pin = "13"

  work := func() {
    gobot.Every("1s", func() {
      led.Toggle()
    })
  }

  robot := gobot.Robot{
    Connections: []gobot.Connection{firmata},
    Devices:     []gobot.Device{led},
    Work:        work,
  }

  robot.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 provded using the cylon-gpio module:

  • GPIO <=> Drivers
    • Analog Sensor
    • Button
    • Digital Sensor
    • LED
    • Motor
    • Servo

Support for devices that use Inter-Integrated Circuit (I2C) have a shared set of drivers provded using the gobot-i2c module:

  • I2C <=> Drivers
    • BlinkM
    • HMC6352
    • Wii Nunchuck Controller

More platforms and drivers are coming soon...

Getting Started

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

Then install additional libraries for whatever hardware support you want to use from your robot. For example, go get -u github.com/hybridgroup/gobot-sphero to use Gobot with a Sphero.

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, use the Api command like this:

  master := gobot.GobotMaster()
  gobot.Api(master)

To specify the api port run your Gobot program with the PORT environment variable

  $ PORT=8080 go run gobotProgram.go

In order to use the robeaux AngularJS interface with Gobot you simply clone the robeaux repo and place it in the directory of your Gobot program. The robeaux assets must be in a folder called robeaux.

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 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.
  • 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.