hybridgroup.gobot/platforms/gpio
gmarik e494b9fb99 Refactor to use `gobottest` test helpers 2016-02-22 00:33:58 -05:00
..
LICENSE WIP project restructure 2014-04-29 13:20:32 -07:00
README.md Corrected dependency install instructions for all current platforms 2015-07-10 08:02:18 -07:00
analog_sensor_driver.go go lint and documentation tweaks for the gpio package 2015-01-02 10:42:53 -08:00
analog_sensor_driver_test.go Refactor to use `gobottest` test helpers 2016-02-22 00:33:58 -05:00
button_driver.go go lint and documentation tweaks for the gpio package 2015-01-02 10:42:53 -08:00
button_driver_test.go Refactor to use `gobottest` test helpers 2016-02-22 00:33:58 -05:00
buzzer_driver.go Add buzzer gpio driver 2015-07-03 19:01:39 -07:00
direct_pin_driver.go go lint and documentation tweaks for the gpio package 2015-01-02 10:42:53 -08:00
direct_pin_driver_test.go Refactor to use `gobottest` test helpers 2016-02-22 00:33:58 -05: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 Docs and examples to better show off Grove GPIO 2015-10-22 16:56:03 -07:00
grove_temperature_sensor_driver.go Add grove temperature sensor driver 2015-07-03 19:01:39 -07: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 go lint and documentation tweaks for the gpio package 2015-01-02 10:42:53 -08:00
makey_button_driver_test.go Refactor to use `gobottest` test helpers 2016-02-22 00:33:58 -05:00
motor_driver.go go lint and documentation tweaks for the gpio package 2015-01-02 10:42:53 -08: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
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
  • Direct Pin
  • LED
  • Makey Button
  • Motor
  • Servo

More drivers are coming soon...