synthead / gpio_sysfs

Portable sysfs-based GPIO library for Ruby

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Summary

gpio_sysfs is a simple, cross-platform GPIO library for Ruby that interacts with sysfs without any gem dependencies. This allows this library to interact with a variety of GPIO interfaces from various vendors with ease.

Unlike some similar libraries, gpio_sysfs does not read and write to /dev/mem, which requires the root user to be running the code. The user only needs to have write access to /sys/class/gpio.

Usage

To read from a pin:

require "gpio_sysfs"

pin = GpioSysfs::Pin.new(18)
pin.direction = "in"

pin.value  # Returns true or false.

To write to a pin:

require "gpio_sysfs"

pin = GpioSysfs::Pin.new(18)

pin.value = true

Testing

The test suite will run on any machine with:

bundle exec rspec

About

Portable sysfs-based GPIO library for Ruby


Languages

Language:Ruby 100.0%