module Myo

Constants

API_VERSION
SOCKET
VERSION

Public Class Methods

connect() { |band| ... } click to toggle source
# File lib/myo.rb, line 12
def self.connect
  band = Band.new(SOCKET)
  yield(band)
  band.run
end