hybridgroup.gobot/drivers/gpio
deadprogram e3ca19eaa3 gpio: avoid possible race condition in button test
Signed-off-by: deadprogram <ron@hybridgroup.com>
2017-04-27 17:19:32 +02:00
..
LICENSE license: update license year to include 2017 2017-01-02 22:25:17 +01:00
README.md aio: separate analog drivers from gpio drivers 2016-12-20 13:25:22 +01:00
button_driver.go gpio: use new improved default namer to avoid API conflicts 2017-02-02 15:37:09 +01:00
button_driver_test.go gpio: avoid possible race condition in button test 2017-04-27 17:19:32 +02:00
buzzer_driver.go gpio: use new improved default namer to avoid API conflicts 2017-02-02 15:37:09 +01:00
buzzer_driver_test.go gpio: increase test coverage for buzzer driver 2017-04-04 15:42:45 +02:00
direct_pin_driver.go gpio: use new improved default namer to avoid API conflicts 2017-02-02 15:37:09 +01:00
direct_pin_driver_test.go gpio: increase test coverage for direct pin driver 2017-04-12 11:17:44 +02:00
doc.go docs: correct GPIO README link 2016-12-21 10:56:38 +01:00
gpio.go gpio: only need to support DigitalReader/DigitalWriter interface 2017-04-15 18:41:07 +02:00
grove_drivers.go aio: separate analog drivers from gpio drivers 2016-12-20 13:25:22 +01:00
grove_drivers_test.go gpio: reduce test side effects 2017-04-02 17:15:45 +02:00
helpers_test.go gpio: eliminate race conditions introduced by tests 2017-04-02 17:42:01 +02:00
led_driver.go gpio: use new improved default namer to avoid API conflicts 2017-02-02 15:37:09 +01:00
led_driver_test.go gpio: adjust test timeouts 2017-04-21 11:13:56 +02:00
makey_button_driver.go gpio: use new improved default namer to avoid API conflicts 2017-02-02 15:37:09 +01:00
makey_button_driver_test.go gpio: adjust test timeouts 2017-04-21 11:13:56 +02:00
motor_driver.go Fix incorrect change state 2017-04-12 16:32:46 +03:00
motor_driver_test.go Fix test on mode change when speed is set 2017-04-12 18:07:37 +03:00
pir_motion_driver.go gpio: use new improved default namer to avoid API conflicts 2017-02-02 15:37:09 +01:00
pir_motion_driver_test.go gpio: adjust test timeouts 2017-04-21 11:13:56 +02:00
relay_driver.go gpio: use new improved default namer to avoid API conflicts 2017-02-02 15:37:09 +01:00
relay_driver_test.go gpio: reduce test side effects 2017-04-02 17:15:45 +02:00
rgb_led_driver.go gpio: use new improved default namer to avoid API conflicts 2017-02-02 15:37:09 +01:00
rgb_led_driver_test.go gpio: reduce test side effects 2017-04-02 17:15:45 +02:00
servo_driver.go gpio: use new improved default namer to avoid API conflicts 2017-02-02 15:37:09 +01:00
servo_driver_test.go gpio: reduce test side effects 2017-04-02 17:15:45 +02:00

README.md

GPIO

This package provides drivers for General Purpose Input/Output (GPIO) devices. It is normally used by connecting an adaptor such as firmata that supports the needed interfaces for GPIO devices.

Getting Started

Installing

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

Hardware Support

Gobot has a extensible system for connecting to hardware devices. The following GPIO devices are currently supported:

  • 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

More drivers are coming soon...