Friday, March 29, 2024
ExplainerIoT Software&ToolsTech/Web

Gobot – A Framework for robots, drones, and IoT

What is Gobot?

Gobot is a framework for robotics, physical computing, and the Internet of Things (IoT), written in the Go programming language. It provides drivers and adapters for controlling a wide variety of physical devices from low-level Arduino and Raspberry Pi, as well as drones, toys, and other complete devices that themselves have APIs.

The “Robot” is the main software abstraction that makes it easy to build interesting high-level functionality for supported devices. Robots (Go programs) written with Gobot can run on a host machine communicating to connected devices, or directly on a single-board Linux computer, or anywhere in between. It can also provide an external facing API to allow other programs to control from individual devices to entire groups of Robots on a shared network, implemented using JSON-over-HTTP API. Gobot’s approach to standardization and abstraction makes it easy to write a program that works on multiple hardware platforms with little modification.

Set Up Your Environment

Installing Go

Go is an open-source programming language that makes it easy to develop simple, reliable, and efficient software.

Follow the official installation instructions to get started.

Installing Gobot

With Go installed, the go get tool will help you install Gobot and its required dependencies:

$ go get -d -u gobot.io/x/gobot/...

Platform Support

It has a extensible system for connecting to hardware devices. Currently 35 platforms supported. Many GPIO, SPI, I2c drivers available with go lang packages.

API

It includes a RESTful API to query the status of any connection, device or robot running in your swarm. It additionally has the ability to issue commands directly to your devices and robots. Check out http://cppp.io for more information.

It also comes with the robeaux React.JS interface baked right into its API server for quick and easy configuration. You can check out more information on the Gobot API in the docs here.

CLI

Gobot is designed to be using in conjunction with Gort, a Command Line Toolkit (CLI) for RobotOps. Gort provides tools to scan for connected devices, upload firmware, and it works perfectly with Gobot. Also included with Gobot is a CLI for generating new robots and adaptors. It also has it own CLI which you can learn more about here.

Getting Started with a Simple Tutorial

The “Hello, World” Of Things -This program connects to an Arduino, and toggles an LED, every one second.

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()
}

To run your Robot, you can just pass the source file to go run:

$ go run blink.go

You should see the LED turn on and off every second. Explore More examples for IoT project.

Useful links


You may like also: The Go Programming Language


Harshvardhan Mishra

Hi, I'm Harshvardhan Mishra. Tech enthusiast and IT professional with a B.Tech in IT, PG Diploma in IoT from CDAC, and 6 years of industry experience. Founder of HVM Smart Solutions, blending technology for real-world solutions. As a passionate technical author, I simplify complex concepts for diverse audiences. Let's connect and explore the tech world together! If you want to help support me on my journey, consider sharing my articles, or Buy me a Coffee! Thank you for reading my blog! Happy learning! Linkedin

2 thoughts on “Gobot – A Framework for robots, drones, and IoT

Leave a Reply

Your email address will not be published. Required fields are marked *