Go to file
deadprogram da3adc0d85 examples: small refactor to metal button example that shows how to use Gobot event channels
Signed-off-by: deadprogram <ron@hybridgroup.com>
2016-10-18 11:31:40 +02:00
api core: refactor/rename internal name of Master type 2016-10-15 20:02:54 +02:00
cli core: refactor/rename internal name of Master type 2016-10-15 20:02:54 +02:00
drivers i2c: correct signature for Adafruit Motor Hat driver to match latest refactor 2016-10-10 11:04:39 +02:00
examples examples: small refactor to metal button example that shows how to use Gobot event channels 2016-10-18 11:31:40 +02:00
gobottest [audio] Run go fmt because we have to 2016-05-24 21:05:27 -07:00
platforms fixed undefined method errors 2016-10-17 17:59:23 +11:00
scripts test: small change to order of Travis test execution 2016-10-15 20:26:53 +02:00
sysfs Merge pull request #308 from jfinken/dev 2016-09-17 01:34:05 +02:00
.gitignore First pass at adding some documentation 2014-08-13 10:22:58 -06:00
.travis.yml test: reduce Travis builds to golang 1.4+ since it is late 2016 already 2016-10-03 10:25:56 +02:00
CHANGELOG.md Resolve merge conflicts 2016-07-13 08:30:45 -06:00
CONTRIBUTING.md Make dev branch target more explicit 2016-02-19 18:41:26 -08:00
LICENSE Add C.H.I.P. to supported platforms 2016-02-17 12:25:14 -08:00
Makefile test: Run Travis tests on Intel Joule 2016-10-03 19:07:15 +02:00
README.md core: refactor/rename internal name of Master type 2016-10-15 20:02:54 +02:00
adaptor.go core: Starting refactor of new adaptor/new driver function signatures with ARDrone 2016-09-25 11:46:55 +02:00
commander.go go lint and documentation tweaks for the gobot package 2014-12-31 05:15:52 -08:00
commander_test.go Refactor to use `gobottest` test helpers 2016-02-24 22:16:05 -08:00
connection.go go lint and documentation tweaks for the gobot package 2014-12-31 05:15:52 -08:00
device.go go lint and documentation tweaks for the gobot package 2014-12-31 05:15:52 -08:00
doc.go core: refactor/rename internal name of Master type 2016-10-15 20:02:54 +02:00
driver.go core: Starting refactor of new adaptor/new driver function signatures with ARDrone 2016-09-25 11:46:55 +02:00
event.go core: Refactor events to use channels all the way down. Allows 'metal' development using Gobot libs. 2016-09-12 21:33:14 +02:00
eventer.go core: Add Unsubscribe() to eventer, now Once() works as expected 2016-09-12 21:33:14 +02:00
eventer_test.go core: Add further tests for Eventer 2016-09-12 21:33:14 +02:00
examples_test.go core: Refactor events to use channels all the way down. Allows 'metal' development using Gobot libs. 2016-09-12 21:33:14 +02:00
helpers_test.go core: Starting refactor of new adaptor/new driver function signatures with ARDrone 2016-09-25 11:46:55 +02:00
master.go test: update tests from linter errors 2016-10-16 11:43:02 +02:00
master_test.go core: refactor/rename internal name of Master type 2016-10-15 20:02:54 +02:00
robot.go core: refactor/rename internal name of Master type 2016-10-15 20:02:54 +02:00
utils.go core: Refactor events to use channels all the way down. Allows 'metal' development using Gobot libs. 2016-09-12 21:33:14 +02:00
utils_test.go test: update tests from linter errors 2016-10-16 11:43:02 +02:00
version.go release: update to version 0.13.0 2016-10-10 19:28:52 +02:00

README.md

Gobot

Gobot (http://gobot.io/) 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 Javascript robotics? Check out our sister project Cylon.js (http://cylonjs.com/)

Want to use Ruby on robots? Check out our sister project Artoo (http://artoo.io)

GoDoc Build Status Coverage Status Go Report Card

Getting Started

Get the Gobot source with: go get -d -u github.com/hybridgroup/gobot/...

Examples

Gobot with Arduino

package main

import (
	"time"

	"github.com/hybridgroup/gobot"
	"github.com/hybridgroup/gobot/platforms/firmata"
	"github.com/hybridgroup/gobot/drivers/gpio"
)

func main() {
	master := gobot.NewMaster()

	firmataAdaptor := firmata.NewAdaptor("/dev/ttyACM0")
	led := gpio.NewLedDriver(firmataAdaptor, "13")

	work := func() {
		gobot.Every(1*time.Second, func() {
			led.Toggle()
		})
	}

	robot := gobot.NewRobot("bot",
		[]gobot.Connection{firmataAdaptor},
		[]gobot.Device{led},
		work,
	)

	master.AddRobot(robot)

	master.Start()
}

Gobot with Sphero

package main

import (
	"fmt"
	"time"

	"github.com/hybridgroup/gobot"
	"github.com/hybridgroup/gobot/platforms/sphero"
)

func main() {
	master := gobot.NewMaster()

	adaptor := sphero.NewAdaptor("/dev/rfcomm0")
	driver := sphero.NewSpheroDriver(adaptor)

	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,
	)

	master.AddRobot(robot)

	master.Start()
}

"Metal" Gobot

You can use the entire Gobot framework as shown in the examples above ("Classic" Gobot), or you can pick and choose from the various Gobot packages to control hardware with nothing but pure idiomatic Golang code ("Metal" Gobot). For example:

package main

import (
	"github.com/hybridgroup/gobot/drivers/gpio"
	"github.com/hybridgroup/gobot/platforms/intel-iot/edison"
	"time"
)

func main() {
	e := edison.NewAdaptor()
	e.Connect()

	led := gpio.NewLedDriver(e, "13")
	led.Start()

	for {
		led.Toggle()
		time.Sleep(1000 * time.Millisecond)
	}
}

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 gobot/drivers/gpio package:

  • GPIO <=> Drivers
    • Analog Sensor
    • Button
    • Buzzer
    • Direct Pin
    • Grove Button
    • Grove Buzzer
    • Grove LED
    • Grove Light Sensor
    • Grove Piezo Vibration Sensor
    • Grove Relay
    • Grove Rotary Dial
    • Grove Sound Sensor
    • Grove Temperature Sensor
    • Grove Touch Sensor
    • LED
    • Makey Button
    • Motor
    • Relay
    • RGB LED
    • Servo

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

  • I2C <=> Drivers
    • BlinkM
    • Grove Digital Accelerometer
    • Grove RGB LCD
    • HMC6352 Compass
    • JHD1313M1 RGB LCD Display
    • LIDAR-Lite
    • MCP23017 Port Expander
    • MMA7660 3-Axis Accelerometer
    • MPL115A2 Barometer
    • MPU6050 Accelerometer/Gyroscope
    • 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:

  master := gobot.NewMaster()
  api.NewAPI(master).Start()

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

  master := gobot.NewMaster()
  server := api.NewAPI(master)
  server.Port = "4000"
  server.AddHandler(api.BasicAuth("gort", "klatuu"))
  server.Start()

You may access the robeaux React.js interface with Gobot by navigating to http://localhost:3000/index.html.

CLI

Gobot uses the Gort http://gort.io Command Line Interface (CLI) so you can access important features right from the command line. We call it "RobotOps", aka "DevOps For Robotics". You can scan, connect, update device firmware, and more!

Gobot also has its own CLI to generate new platforms, adaptors, and drivers. You can check it out at https://github.com/hybridgroup/gobot/cli.

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?

Contributing

For our contribution guidelines, please go to https://github.com/hybridgroup/gobot/blob/master/CONTRIBUTING.md .

License

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