项目作者: nak1114

项目描述 :
This gem is a ruby binding to pigpio library.
高级语言: C
项目地址: git://github.com/nak1114/ruby-extension-pigpio.git
创建时间: 2019-02-10T02:30:15Z
项目社区:https://github.com/nak1114/ruby-extension-pigpio

开源协议:MIT License

下载


Pigpio

This gem is a ruby binding to a pigpio library.

Installation

First, install pigpio libary.

  1. $ sudo apt-get update
  2. $ sudo apt-get install pigpio

Next, add this line to your application’s Gemfile:

  1. gem 'pigpio'

And then execute:

  1. $ bundle

Or install it yourself as:

  1. $ sudo gem install pigpio

Usage

First, create a circuit.

board

Next, write a script.

  1. require "pigpio"
  2. include Pigpio::Constant
  3. pi=Pigpio.new
  4. unless pi.connect
  5. exit -1
  6. end
  7. led = pi.gpio(4)
  8. led.mode = PI_OUTPUT
  9. led.pud = PI_PUD_OFF
  10. 3.times do |i|
  11. led.write 1
  12. sleep 1
  13. led.write 0
  14. sleep 1
  15. end
  16. pi.stop

Then, run deamon and script.

  1. $ sudo pigpiod
  2. $ ruby example_led.rb

More sample for this circuit. : Hare

More sample for other circuit. : Hare

More document : GitHub Pages

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/nak1114/pigpio. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

License

The gem is available as open source under the terms of the MIT License.

Code of Conduct

Everyone interacting in the Pigpio project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.