Module: Myo
- Defined in:
- lib/myo.rb,
lib/myo/version.rb
Defined Under Namespace
Constant Summary collapse
- MYO_API_VERSION =
3- SOCKET_URL =
"ws://127.0.0.1:10138/myo/#{MYO_API_VERSION}"- VERSION =
"0.2.0"
Class Method Summary collapse
-
.connect {|client| ... } ⇒ Object
Define event handler for each Myo armband.
Class Method Details
.connect {|client| ... } ⇒ Object
Define event handler for each Myo armband
13 14 15 16 17 |
# File 'lib/myo.rb', line 13 def self.connect client = Client.new(SOCKET_URL) yield(client) client.start end |