hybridgroup.gobot/drivers/gpio
deadprogram 03e29d17f1 core: update GPIO drivers to return simply errors
Signed-off-by: deadprogram <ron@hybridgroup.com>
2016-11-07 21:29:51 +01:00
..
LICENSE core: Move GPIO and I2C drivers into appropriately named 'drivers' directory 2016-09-25 12:34:09 +02:00
README.md docs: update README for gpio drivers 2016-11-01 19:16:23 +01:00
analog_sensor_driver.go core: no longer return slices of errors, instead use multierror 2016-11-07 21:29:51 +01:00
analog_sensor_driver_test.go core: update GPIO drivers to return simply errors 2016-11-07 21:29:51 +01:00
button_driver.go core: no longer return slices of errors, instead use multierror 2016-11-07 21:29:51 +01:00
button_driver_test.go core: update GPIO drivers to return simply errors 2016-11-07 21:29:51 +01:00
buzzer_driver.go core: no longer return slices of errors, instead use multierror 2016-11-07 21:29:51 +01:00
direct_pin_driver.go core: no longer return slices of errors, instead use multierror 2016-11-07 21:29:51 +01:00
direct_pin_driver_test.go core: update GPIO drivers to return simply errors 2016-11-07 21:29:51 +01:00
doc.go core: Move GPIO and I2C drivers into appropriately named 'drivers' directory 2016-09-25 12:34:09 +02:00
gpio.go gpio: Add initial support for PIR motion detector 2016-10-22 15:17:49 +02:00
grove_drivers.go Adds support for Grove Magnetic Switch Sensor 2016-10-26 23:20:43 -06:00
grove_drivers_test.go Removes subtest definitions since they are not supported in go1.6 2016-11-06 11:36:11 -07:00
grove_temperature_sensor_driver.go core: no longer return slices of errors, instead use multierror 2016-11-07 21:29:51 +01:00
grove_temperature_sensor_driver_test.go core: update GPIO drivers to return simply errors 2016-11-07 21:29:51 +01:00
helpers_test.go core: no longer return slices of errors, instead use multierror 2016-11-07 21:29:51 +01:00
led_driver.go core: no longer return slices of errors, instead use multierror 2016-11-07 21:29:51 +01:00
led_driver_test.go core: update GPIO drivers to return simply errors 2016-11-07 21:29:51 +01:00
makey_button_driver.go core: no longer return slices of errors, instead use multierror 2016-11-07 21:29:51 +01:00
makey_button_driver_test.go core: update GPIO drivers to return simply errors 2016-11-07 21:29:51 +01:00
motor_driver.go core: no longer return slices of errors, instead use multierror 2016-11-07 21:29:51 +01:00
motor_driver_test.go core: update GPIO drivers to return simply errors 2016-11-07 21:29:51 +01:00
pir_motion_driver.go core: no longer return slices of errors, instead use multierror 2016-11-07 21:29:51 +01:00
pir_motion_driver_test.go core: update GPIO drivers to return simply errors 2016-11-07 21:29:51 +01:00
relay_driver.go core: no longer return slices of errors, instead use multierror 2016-11-07 21:29:51 +01:00
relay_driver_test.go core: Move GPIO and I2C drivers into appropriately named 'drivers' directory 2016-09-25 12:34:09 +02:00
rgb_led_driver.go core: no longer return slices of errors, instead use multierror 2016-11-07 21:29:51 +01:00
rgb_led_driver_test.go core: update GPIO drivers to return simply errors 2016-11-07 21:29:51 +01:00
servo_driver.go core: no longer return slices of errors, instead use multierror 2016-11-07 21:29:51 +01:00
servo_driver_test.go core: update GPIO drivers to return simply errors 2016-11-07 21:29:51 +01: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 github.com/hybridgroup/gobot/...

Hardware Support

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

  • Analog Sensor
  • Button
  • Buzzer
  • Direct Pin
  • Grove Button
  • Grove Buzzer
  • Grove LED
  • Grove Light Sensor
  • Grove Magnetic Switch
  • Grove Piezo Vibration Sensor
  • Grove Relay
  • Grove Rotary Dial
  • Grove Sound Sensor
  • Grove Temperature Sensor
  • Grove Touch Sensor
  • LED
  • Makey Button
  • Motor
  • Proximity Infra Red (PIR) Motion Sensor
  • Relay
  • RGB LED
  • Servo

More drivers are coming soon...