Sha256: e5585188ffa729b7785d2c5f3bea91e02f41c25931ac1b0efa683c8e06f16589

Contents?: true

Size: 850 Bytes

Versions: 1

Compression:

Stored size: 850 Bytes

Contents

# myo-ruby

Connect to [Myo armband](https://www.thalmic.com/en/myo/) in Ruby

## Usage

You must start __Myo Connect.app__ first.

```ruby
require 'myo'

Myo.connect do |myo|
  myo.on :connected do
    puts "Myo connected!"
  end

  myo.on :pose do |pose, edge|
    puts "#{pose}: #{edge}"
  end

  myo.on :periodic do |orientation|
    puts orientation.accel.x
  end
end
```

## Installation

Add this line to your application's Gemfile:

```ruby
gem 'myo-ruby'
```

And then execute:

```
$ bundle
```

Or install it yourself as:

```
$ gem install myo-ruby
```

## Contributing

1. Fork it ( https://github.com/uetchy/myo-ruby/fork )
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create a new Pull Request

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
myo-ruby-0.2.0 README.md