cherry-myo

cherry plugin to listen for Myo events and send vibrations

Usage no npm install needed!

<script type="module">
  import cherryMyo from 'https://cdn.skypack.dev/cherry-myo';
</script>

README

 cherry-myo

 config

"myo": {
  "host": "192.168.1.169",
  "port": 7024,
  "path": "/myo/1",
}

 api

cf. Myo Connect WebSocket API announcement at https://developer.thalmic.com/forums/topic/534/. e.g.

cherry.handle({
  myo: function (message) {
    var plugins = cherry.plugins();
    if (message.type === 'pose') {
      var pose = message.pose

      if (pose === 'wave_in') {
        plugins.hue({on: true});
      } else if (intent === 'wave_out') {
        plugins.hue({on: false});
      }
    }
  }
});
cherry.plugins().myo({"command": "vibrate", "myo": 0, "type": "short"});