hybridgroup.gobot/platforms/gpio
deadprogram c64a0d9481 core: Refactoring to allow 'metal' development using Gobot adaptors/drivers.
Signed-off-by: deadprogram <ron@hybridgroup.com>
2016-09-12 21:33:14 +02:00
..
LICENSE [gpio] Add support for RGB LED 2016-05-13 15:24:11 -07:00
README.md [gpio] Add support for RGB LED 2016-05-13 15:24:11 -07:00
analog_sensor_driver.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
analog_sensor_driver_test.go core: Refactoring to allow 'metal' development using Gobot adaptors/drivers. 2016-09-12 21:33:14 +02:00
button_driver.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
button_driver_test.go core: Refactoring to allow 'metal' development using Gobot adaptors/drivers. 2016-09-12 21:33:14 +02:00
buzzer_driver.go Add buzzer gpio driver 2015-07-03 19:01:39 -07:00
direct_pin_driver.go support gpio pin turn on and off 2016-06-14 08:44:52 -07:00
direct_pin_driver_test.go fix specs 2016-06-14 09:16:05 -07:00
doc.go go lint and documentation tweaks for the gpio package 2015-01-02 10:42:53 -08:00
gpio.go Add GrovePiezoVibrationSensorDriver 2015-07-08 09:29:36 -07:00
grove_drivers.go core: Refactoring to allow 'metal' development using Gobot adaptors/drivers. 2016-09-12 21:33:14 +02:00
grove_temperature_sensor_driver.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
helpers_test.go Rename test helpers so they don't impact coverage 2014-12-18 14:07:48 -08:00
led_driver.go go lint and documentation tweaks for the gpio package 2015-01-02 10:42:53 -08:00
led_driver_test.go Refactor to use `gobottest` test helpers 2016-02-22 00:33:58 -05:00
makey_button_driver.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
makey_button_driver_test.go core: Refactoring to allow 'metal' development using Gobot adaptors/drivers. 2016-09-12 21:33:14 +02:00
motor_driver.go Code cleanups suggested by gosimple 2016-07-13 09:32:22 -06:00
motor_driver_test.go Refactor to use `gobottest` test helpers 2016-02-22 00:33:58 -05:00
relay_driver.go Add relay driver 2015-07-03 19:01:39 -07:00
rgb_led_driver.go [gpio] Improve pin logging for RGB LED 2016-05-14 17:14:46 -07:00
rgb_led_driver_test.go [gpio] Improve pin logging for RGB LED 2016-05-14 17:14:46 -07:00
servo_driver.go go lint and documentation tweaks for the gpio package 2015-01-02 10:42:53 -08:00
servo_driver_test.go Refactor to use `gobottest` test helpers 2016-02-22 00:33:58 -05:00

README.md

GPIO

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

Getting Started

Installing

go get -d -u github.com/hybridgroup/gobot/... && go install github.com/hybridgroup/gobot/platforms/gpio

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 Touch Sensor
  • Grove Sound Sensor
  • Grove Button
  • Grove Buzzer
  • Grove Light Sensor
  • Grove Piezo Vibration Sensor
  • Grove LED
  • Grove Rotary Dial
  • Grove Relay
  • Grove Temperature Sensor
  • LED
  • Makey Button
  • Motor
  • Relay
  • RGB LED
  • Servo

More drivers are coming soon...