Go to file
deadprogram 65fd971c85 test: correct Travis tests suite to indicate failure by returning proper exit code
Signed-off-by: deadprogram <ron@hybridgroup.com>
2017-02-23 11:51:16 +01:00
api test: increase timeout for api test to 20ms 2017-01-26 19:30:43 +01:00
ci test: correct Travis tests suite to indicate failure by returning proper exit code 2017-02-23 11:51:16 +01:00
cli license: update license year to include 2017 2017-01-02 22:25:17 +01:00
drivers Merge pull request #375 from erkkah/drv2605l-driver 2017-02-22 08:06:55 +01:00
examples Merge pull request #375 from erkkah/drv2605l-driver 2017-02-22 08:06:55 +01:00
gobottest [audio] Run go fmt because we have to 2016-05-24 21:05:27 -07:00
platforms chip: correct docs to describe valid pin mappings 2017-02-16 10:51:44 +01:00
sysfs Updated all i2c drivers to new interface 2017-02-06 15:06:00 +01:00
.gitignore snapcraft: exclude snapcraft build artifacts from git 2017-02-16 19:36:59 +01:00
.travis.yml test: remove TravisCI tests for go 1.6 2017-02-17 08:30:18 +01:00
CHANGELOG.md add changelog for 1.2 release 2017-02-16 09:33:15 +01:00
CONTRIBUTING.md core: use canonical import domain of gobot.io for all code 2016-12-08 13:24:03 +01:00
LICENSE.txt docs: more fiddling with the license file to get the auto-recognizer to work 2017-01-31 19:45:42 +01:00
Makefile test: improvements to run tests much faster thanks @maruel 2017-02-21 18:45:42 +01:00
README.md test: testing use of codecov.io for code coverage reporting 2017-02-16 13:34:04 +01:00
adaptor.go core: no longer return slices of errors, instead use multierror 2016-11-07 21:29:51 +01:00
commander.go docs: Add missing godocs for Commander type 2016-12-01 20:40:58 +01:00
commander_test.go core: use canonical import domain of gobot.io for all code 2016-12-08 13:24:03 +01:00
connection.go core: no longer return slices of errors, instead use multierror 2016-11-07 21:29:51 +01:00
device.go core: no longer return slices of errors, instead use multierror 2016-11-07 21:29:51 +01:00
doc.go license: update license year to include 2017 2017-01-02 22:25:17 +01:00
driver.go core: no longer return slices of errors, instead use multierror 2016-11-07 21:29:51 +01: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: eliminate potential race conditions from Events and Every functions 2016-12-08 20:32:02 +01:00
eventer_test.go core: Add further tests for Eventer 2016-09-12 21:33:14 +02:00
examples_test.go core: use canonical import domain of gobot.io for all code 2016-12-08 13:24:03 +01:00
helpers_test.go core: no longer return slices of errors, instead use multierror 2016-11-07 21:29:51 +01:00
master.go core: no longer return slices of errors, instead use multierror 2016-11-07 21:29:51 +01:00
master_test.go core: write test for robot's devices Halt() 2017-02-22 21:51:57 +01:00
robot.go docs: update params info for Robot 2017-02-10 12:02:25 +01:00
snapcraft.yaml Use go1.7.5 to build the snap 2017-02-15 18:32:24 +00:00
utils.go mqtt: use new improved default namer to avoid API conflicts 2017-02-02 15:29:56 +01:00
utils_test.go core: eliminate potential race conditions from Events and Every functions 2016-12-08 20:32:02 +01:00
version.go Update version to 1.2.1 for point release 2017-02-16 10:52:42 +01:00

README.md

Gobot

GitHub release Build Status Coverage Status Go Report Card License GoDoc

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)

Getting Started

Get the Gobot source with: go get -d -u gobot.io/x/gobot/...

Examples

Gobot with Arduino

package main

import (
	"time"

	"gobot.io/x/gobot"
	"gobot.io/x/gobot/drivers/gpio"
	"gobot.io/x/gobot/platforms/firmata"
)

func main() {
	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,
	)

	robot.Start()
}

Gobot with Sphero

package main

import (
	"fmt"
	"time"

	"gobot.io/x/gobot"
	"gobot.io/x/gobot/platforms/sphero"
)

func main() {
	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,
	)

	robot.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 (
	"gobot.io/x/gobot/drivers/gpio"
	"gobot.io/x/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)
	}
}

"Master" Gobot

You can also use the full capabilities of the framework aka "Master Gobot" to control swarms of robots or other features such as the built-in API server. For example:

package main

import (
	"fmt"
	"time"

	"gobot.io/x/gobot"
	"gobot.io/x/gobot/api"
	"gobot.io/x/gobot/platforms/sphero"
)

func NewSwarmBot(port string) *gobot.Robot {
	spheroAdaptor := sphero.NewAdaptor(port)
	spheroDriver := sphero.NewSpheroDriver(spheroAdaptor)
	spheroDriver.SetName("Sphero" + port)

	work := func() {
		spheroDriver.Stop()

		spheroDriver.On(sphero.Collision, func(data interface{}) {
			fmt.Println("Collision Detected!")
		})

		gobot.Every(1*time.Second, func() {
			spheroDriver.Roll(100, uint16(gobot.Rand(360)))
		})
		gobot.Every(3*time.Second, func() {
			spheroDriver.SetRGB(uint8(gobot.Rand(255)),
				uint8(gobot.Rand(255)),
				uint8(gobot.Rand(255)),
			)
		})
	}

	robot := gobot.NewRobot("sphero",
		[]gobot.Connection{spheroAdaptor},
		[]gobot.Device{spheroDriver},
		work,
	)

	return robot
}

func main() {
	master := gobot.NewMaster()
	api.NewAPI(master).Start()

	spheros := []string{
		"/dev/rfcomm0",
		"/dev/rfcomm1",
		"/dev/rfcomm2",
		"/dev/rfcomm3",
	}

	for _, port := range spheros {
		master.AddRobot(NewSwarmBot(port))
	}

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

  • GPIO <=> Drivers
    • Button
    • Buzzer
    • Direct Pin
    • Grove Button
    • Grove Buzzer
    • Grove LED
    • Grove Magnetic Switch
    • Grove Relay
    • Grove Touch Sensor
    • LED
    • Makey Button
    • Motor
    • Proximity Infra Red (PIR) Motion Sensor
    • Relay
    • RGB LED
    • Servo

Support for many devices that use Analog Input/Output (AIO) have a shared set of drivers provided using the gobot/drivers/aio package:

  • AIO <=> Drivers
    • Analog Sensor
    • Grove Light Sensor
    • Grove Piezo Vibration Sensor
    • Grove Rotary Dial
    • Grove Sound Sensor
    • Grove Temperature Sensor

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

  • I2C <=> Drivers
    • Adafruit Motor Hat
    • BlinkM LED
    • BMP180 Barometric Pressure/Temperature/Altitude Sensor
    • Grove Digital Accelerometer
    • Grove RGB LCD
    • HMC6352 Compass
    • JHD1313M1 LCD Display w/RGB Backlight
    • LIDAR-Lite
    • L3GD20H 3-Axis Gyroscope
    • MCP23017 Port Expander
    • MMA7660 3-Axis Accelerometer
    • MPL115A2 Barometer
    • MPU6050 Accelerometer/Gyroscope
    • SHT3x-D Temperature/Humidity
    • 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, import the gobot.io/x/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 in the /cli directory.

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-2017 The Hybrid Group. Licensed under the Apache 2.0 license.