hybridgroup/gobot
hybridgroup/gobot là dự án phía máy chủ trên GitHub với 9.4k sao, viết chủ yếu bằng Go. Golang framework for robotics, drones, and the Internet of Things (IoT)
Tóm tắt dựng từ metadata GitHub của chính dự án — chưa có bài review TopGit. Trang sẽ tự động cập nhật khi bài review đầy đủ được xuất bản.
TopGit viết bài đầy đủ cho repo có nhiều sao nhất và được yêu cầu nhiều nhất. Trang này là snapshot trong thời gian chờ — xem README gốc ở tab READ ME.
Snapshot
Cộng tác viên hàng đầu
Xem cộng tác viên hàng đầu

Gobot (https://gobot.io/) is a framework using the Go programming language (https://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 run Go directly on microcontrollers? Check out our sister project TinyGo (https://tinygo.org/)
Getting Started
Get in touch
Get the Gobot source code by running this commands:
git clone https://github.com/hybridgroup/gobot.git
git checkout release
Afterwards have a look at the examples directory. You need to find an example matching your platform for your first test (e.g. "raspi_blink.go"). Than build the binary (cross compile), transfer it to your target and run it.
env GOOS=linux GOARCH=arm GOARM=5 go build -o ./output/my_raspi_bink examples/raspi_blink.go
Building the code on your local machine with the example code above will create a binary for ARMv5. This is probably not what you need for your specific target platform. Please read also the platform specific documentation in the platform subfolders.
Create your first project
Create a new folder and a new Go module project.
mkdir ~/my_gobot_example
cd ~/my_gobot_example
go mod init my.gobot.example.com
Copy your example file besides the go.mod file, import the requirements and build.
cp /<path to gobot folder>/examples/raspi_blink.go ~/my_gobot_example/
go mod tidy
env GOOS=linux GOARCH=arm GOARM=5 go build -o ./output/my_raspi_bink raspi_blink.go
Now you are ready to modify the example and test your changes. Start by removing the build directives at the beginning of the file.
Examples
Gobot with Arduino
package main
import (
"time"
"gobot.io/x/gobot/v2"
"gobot.io/x/gobot/v2/drivers/gpio"
"gobot.io/x/gobot/v2/platforms/firmata"
)
func main() {
firmataAdaptor := firmata.NewAdaptor("/dev/ttyACM0")
led := gpio.NewLedDriver(firmataAdaptor, "13")
work := func() {
gobot.Every(1*time.Second, func() {
if err := led.Toggle(); err != nil {
fmt.Println(err)
}
})
}
robot := gobot.NewRobot("bot",
[]gobot.Connection{firmataAdaptor},
[]gobot.Device{led},
work,
)
if err := robot.Start(); err != nil {
panic(err)
}
}
Gobot with Sphero
package main
import (
"fmt"
"time"
"gobot.io/x/gobot/v2"
"gobot.io/x/gobot/v2/drivers/serial"
"gobot.io/x/gobot/v2/platforms/serialport"
)
func main() {
adaptor := serialport.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,
)
if err := robot.Start(); err != nil {
panic(err)
}
}
"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/v2/drivers/gpio"
"gobot.io/x/gobot/v2/platforms/intel-iot/edison"
"time"
)
func main() {
e := edison.NewAdaptor()
if err := e.Connect(); err != nil {
fmt.Println(err)
}
led := gpio.NewLedDriver(e, "13")
if err := led.Start(); err != nil {
fmt.Println(err)
}
for {
if err := led.Toggle(); err != nil {
fmt.Println(err)
}
time.Sleep(1000 * time.Millisecond)
}
}
"Manager" Gobot
You can also use the full capabilities of the framework aka "Manager 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/v2"
"gobot.io/x/gobot/v2/api"
"gobot.io/x/gobot/v2/drivers/common/spherocommon"
"gobot.io/x/gobot/v2/drivers/serial"
"gobot.io/x/gobot/v2/platforms/serialport"
)
func NewSwarmBot(port string) *gobot.Robot {
spheroAdaptor := serialport.NewAdaptor(port)
spheroDriver := sphero.NewSpheroDriver(spheroAdaptor, serial.WithName("Sphero" + port))
work := func() {
spheroDriver.Stop()
_ = spheroDriver.On(sphero.CollisionEvent, 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() {
manager := gobot.NewManager()
api.NewAPI(manager).Start()
spheros := []string{
"/dev/rfcomm0",
"/dev/rfcomm1",
"/dev/rfcomm2",
"/dev/rfcomm3",
}
for _, port := range spheros {
manager.AddRobot(NewSwarmBot(port))
}
if err := manager.Start(); err != nil {
panic(err)
}
}
Hardware Support
Gobot has a extensible system for connecting to hardware devices. The following robotics and physical computing platforms are currently supported:
- Arduino <=> Package
- ASUS Tinker Board <=> Package
- ASUS Tinker Board 2 <=> Package
- Audio <=> Package
- BeagleBoard BeagleBone Black <=> Package
- BeagleBoard PocketBeagle <=> Package
- Bluetooth LE <=> Package
- C.H.I.P <=> Package
- C.H.I.P Pro <=> Package
- Digispark <=> Package
- DJI Tello <=> Package
- DragonBoard <=> Package
- ESP8266 <=> Package
- FriendlyELEC NanoPi NEO <=> Package
- FriendlyELEC NanoPC-T6 <=> Package
- GoPiGo 3 <=> Package
- Intel Curie <=> Package
- Intel Edison <=> Package
- Intel Joule <=> Package
- Jetson Nano <=> Package
- Joystick <=> Package
- Keyboard <=> Package
- Leap Motion <=> Package
- MavLink <=> Package
- MegaPi <=> Package
- Microbit <=> Package
- MQTT <=> Package
- NATS <=> Package
- Neurosky <=> Package
- OpenCV <=> Package
- OrangePi 5 Pro <=> Package
- Particle <=> Package
- Parrot ARDrone 2.0 <=> Package
- Parrot Bebop <=> Package
- Parrot Minidrone <=> Package
- Pebble <=> Package
- PINE64 ROCK64 <=> Package
- Radxa Rock Pi 4 <=> Package
- Raspberry Pi <=> Package
- Serial Port <=> Package
- Sphero <=> Package
- Sphero BB-8 <=> Package
- Sphero Ollie <=> Package
- Sphero SPRK+ <=> Package
- UP2 <=> Package
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 Actuator
- Analog Sensor
- Grove Light Sensor
- Grove Piezo Vibration Sensor
- Grove Rotary Dial
- Grove Sound Sensor
- Grove Temperature Sensor
- Temperature Sensor (supports linear and NTC thermistor in normal and inverse mode)
- Thermal Zone Temperature Sensor
Support for many devices that use Bluetooth LE (BLE) have a shared set of drivers provided using
the gobot/drivers/ble package:
- BLE <=> Drivers
- Battery Service
- Device Information Service
- Generic Access Service
- Microbit: AccelerometerDriver
- Microbit: ButtonDriver
- Microbit: IOPinDriver
- Microbit: LEDDriver
- Microbit: MagnetometerDriver
- Microbit: TemperatureDriver
- Sphero: BB8
- Sphero: Ollie
- Sphero: SPRK+
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
- AIP1640 LED Dot Matrix/7 Segment Controller
- Button
- Buzzer
- Direct Pin
- EasyDriver
- Grove Button (by using driver for Button)
- Grove Buzzer (by using driver for Buzzer)
- Grove LED (by using driver for LED)
- Grove Magnetic Switch (by using driver for Button)
- Grove Relay (by using driver for Relay)
- Grove Touch Sensor (by using driver for Button)
- HC-SR04 Ultrasonic Ranging Module
- HD44780 LCD controller
- LED
- Makey Button (by using driver for Button)
- MAX7219 LED Dot Matrix
- Motor
- Proximity Infra Red (PIR) Motion Sensor
- Relay
- RGB LED
- Servo
- Stepper Motor
- TM1638 LED Controller
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 1109 2x16 RGB-LCD with 5 keys
- Adafruit 2327 16-Channel PWM/Servo HAT Hat
- Adafruit 2348 DC and Stepper Motor Hat
- ADS1015 Analog to Digital Converter
- ADS1115 Analog to Digital Converter
- ADXL345 Digital Accelerometer
- BH1750 Digital Luminosity/Lux/Light Sensor
- BlinkM LED
- BME280 Barometric Pressure/Temperature/Altitude/Humidity Sensor
- BMP180 Barometric Pressure/Temperature/Altitude Sensor
- BMP280 Barometric Pressure/Temperature/Altitude Sensor
- BMP388 Barometric Pressure/Temperature/Altitude Sensor
- DRV2605L Haptic Controller
- Generic driver for read and write values to/from register address
- Grove Digital Accelerometer
- GrovePi Expansion Board
- Grove RGB LCD
- HMC6352 Compass
- HMC5883L 3-Axis Digital Compass
- INA3221 Voltage Monitor
- JHD1313M1 LCD Display w/RGB Backlight
- L3GD20H 3-Axis Gyroscope
- LIDAR-Lite
- MCP23017 Port Expander
- MMA7660 3-Axis Accelerometer
- MPL115A2 Barometric Pressure/Temperature
- MPU6050 Accelerometer/Gyroscope
- PCA9501 8-bit I/O port with interrupt, 2-kbit EEPROM
- PCA953x LED Dimmer for PCA9530 (2-bit), PCA9533 (4-bit), PCA9531 (8-bit), PCA9532 (16-bit)
- PCA9685 16-channel 12-bit PWM/Servo Driver
- PCF8583 clock and calendar or event counter, 240 x 8-bit RAM
- PCF8591 8-bit 4xA/D & 1xD/A converter
- SHT2x Temperature/Humidity
- SHT3x-D Temperature/Humidity
- SSD1306 OLED Display Controller
- TSL2561 Digital Luminosity/Lux/Light Sensor
- Wii Nunchuck Controller
- YL-40 Brightness/Temperature sensor, Potentiometer, analog input, analog output Driver
Support for many devices that use Serial communication (UART) have a shared set of drivers provided using
the gobot/drivers/serial package:
- UART <=> Drivers
- Sphero: Sphero
- Neurosky: MindWave
- MegaPi: MotorDriver
Support for devices that use Serial Peripheral Interface (SPI) have
a shared set of drivers provided using the gobot/drivers/spi package:
- SPI <=> Drivers
- APA102 Programmable LEDs
- MCP3002 Analog/Digital Converter
- MCP3004 Analog/Digital Converter
- MCP3008 Analog/Digital Converter
- MCP3202 Analog/Digital Converter
- MCP3204 Analog/Digital Converter
- MCP3208 Analog/Digital Converter
- MCP3304 Analog/Digital Converter
- MFRC522 RFID Card Reader
- SSD1306 OLED Display Controller
Support for devices that use 1-wire bus with Linux Kernel support (w1-gpio) have
a shared set of drivers provided using the gobot/drivers/onewire package:
- 1-wire <=> Drivers
- DS18B20 Temperature Sensor
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/v2/api package and instantiate the API like this:
manager := gobot.NewManager()
api.NewAPI(manager).Start()
You can also specify the api host and port, and turn on authentication:
manager := gobot.NewManager()
server := api.NewAPI(manager)
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!
Documentation
We're always adding documentation to our web site at https://gobot.io/ please check there as we continue to work on Gobot
Thank you!
Need help?
- Issues: https://github.com/hybridgroup/gobot/issues
- Twitter: @gobotio
- Slack: https://gophers.slack.com/messages/C0N5HDB08
- Mailing list: https://groups.google.com/forum/#!forum/gobotio
Contributing
For our contribution guidelines, please go to https://github.com/hybridgroup/gobot/blob/release/CONTRIBUTING.md .
Gobot is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms. You can read about it here.
License
Copyright (c) 2013-2020 The Hybrid Group. Licensed under the Apache 2.0 license.
The Contributor Covenant is released under the Creative Commons Attribution 4.0 International Public License, which requires that attribution be included.
Repo liên quan
Awesome Go, maintained at avelino/awesome-go, groups Go frameworks, libraries, and software into topic categories including Actor Model, Artificial Intelligence, Audio and Music, Authentication and Authorization, Blockchain, Bot Building, and Build Automation. Every linked entry gets a short description instead of a bare URL. The repository carries an MIT license and takes new entries through pull requests reviewed against its own contribution guidelines, which makes it a common bookmark for day-to-day Go development.
golang/go is the open source repository behind The Go Programming Language, holding the compiler, runtime, and standard library source that Go's official binaries are built from. The README frames Go's purpose as building software that is simple, reliable, and efficient, credits the project to thousands of contributors, and notes that this GitHub repo mirrors the canonical Git repository at go.googlesource.com/go.
Kubernetes is an open source system, per its own README, for managing containerized applications across multiple hosts, covering their deployment, maintenance, and scaling. It's hosted by the Cloud Native Computing Foundation, written in Go, and released under the Apache-2.0 license. The repository has 124,479 stars and 43,850 forks on GitHub.
Hugo is an open-source static site generator hosted at gohugoio/hugo on GitHub, written in Go and licensed under Apache-2.0. The README describes it as built by bep, spf13, and contributors, with a templating system, a taxonomy system, and asset pipelines for CSS, images, JavaScript, Sass, and Tailwind CSS. It ships in four editions (standard, deploy, extended, extended/deploy) and supports sharing content and configuration across projects through Hugo Modules.
Trả lời nhanh
Đọc thêm về hybridgroup/gobot ở đâu?
Trang TopGit này là một snapshot — tab "Readme" hiển thị nguyên văn README của repo (đã bỏ link, giữ ảnh). Repo GitHub ở github.com/hybridgroup/gobot là nguồn chính thức.
hybridgroup/gobot có những chủ đề gì?
GitHub topics của hybridgroup/gobot: "arduino", "beaglebone", "beaglebone-black", "bluetooth", "bluetooth-le", "drone", "go", "gpio", "hardware", "i2c", "intel-edison", "intel-joule", "internet-of-things", "iot", "mqtt", "raspberry-pi", "robot", "robotics", "sphero", "uav". TopGit xếp repo vào nhóm Backend.
hybridgroup/gobot có phải mã nguồn mở không?
TopGit chưa ghi nhận license cho hybridgroup/gobot. Phần lớn repo public trên GitHub là mã nguồn mở, nhưng điều khoản khác nhau từng repo — mở file LICENSE để xác nhận.
hybridgroup/gobot có trang demo không?
Dự án có trang chủ ở https://gobot.io. Tab "Readme" ở trang này thường có ảnh chụp và hướng dẫn bắt đầu nhanh.
hybridgroup/gobot còn đang phát triển không?
Commit gần nhất trên hybridgroup/gobot là 7 tháng trước (theo timestamp GitHub). Repo có 1.1k fork — một chỉ báo về mức độ quan tâm của cộng đồng.
Đọc đầy đủ README ở tab phía trên.
Vẫn đang phân vân về gobot?
Một cú bấm sẽ gửi câu hỏi kèm trang này cho AI — xem AI nói gì về gobot.