hybridgroup.gobot/platforms/gpio
Adrian Zankich 34ccc13ecb Add analog sensor data event 2014-06-28 17:18:16 -07:00
..
docs WIP project restructure 2014-04-29 13:20:32 -07:00
LICENSE WIP project restructure 2014-04-29 13:20:32 -07:00
README.md Update READMEs for each platform 2014-06-09 19:01:53 -07:00
analog_sensor_driver.go Add analog sensor data event 2014-06-28 17:18:16 -07:00
analog_sensor_driver_test.go The Driver struct now has an Adaptor field 2014-06-15 17:22:50 -07:00
button_driver.go The Driver struct now has an Adaptor field 2014-06-15 17:22:50 -07:00
button_driver_test.go The Driver struct now has an Adaptor field 2014-06-15 17:22:50 -07:00
direct_pin_driver.go The Driver struct now has an Adaptor field 2014-06-15 17:22:50 -07:00
direct_pin_driver_test.go The Driver struct now has an Adaptor field 2014-06-15 17:22:50 -07:00
led_driver.go The Driver struct now has an Adaptor field 2014-06-15 17:22:50 -07:00
led_driver_test.go The Driver struct now has an Adaptor field 2014-06-15 17:22:50 -07:00
makey_button_driver.go Use new Event type for events 2014-06-11 11:37:20 -07:00
motor_driver.go The Driver struct now has an Adaptor field 2014-06-15 17:22:50 -07:00
motor_driver_test.go The Driver struct now has an Adaptor field 2014-06-15 17:22:50 -07:00
servo_driver.go The Driver struct now has an Adaptor field 2014-06-15 17:22:50 -07:00
servo_driver_test.go The Driver struct now has an Adaptor field 2014-06-15 17:22:50 -07:00
test_helper.go The Driver struct now has an Adaptor field 2014-06-15 17:22:50 -07:00
utils.go Fix beaglebone black issues 2014-06-06 16:58:58 -07: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 github.com/hybridgroup/gobot && go install github.com/hybridgroup/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...