Skip to content

Instantly share code, notes, and snippets.

@connerbrooks
Forked from bwhite/glass.html
Created March 30, 2014 00:56
Show Gist options
  • Save connerbrooks/9865605 to your computer and use it in GitHub Desktop.
Save connerbrooks/9865605 to your computer and use it in GitHub Desktop.
[wearscript] Pebble + Myo control
<html style="width:100%; height:100%; overflow:hidden">
<body style="width:100%; height:100%; overflow:hidden; margin:0">
<script>
function main() {
if (WS.scriptVersion(1)) return;
WS.subscribe("gesture:pebble:singleClick:UP", function () {
WS.control('SWIPE_LEFT');
});
WS.subscribe("gesture:pebble:singleClick:DOWN", function () {
WS.control('SWIPE_RIGHT');
});
WS.subscribe("gesture:pebble:singleClick:SELECT", function () {
WS.control('TAP');
});
WS.subscribe("gesture:pebble:longClick:SELECT", function () {
WS.control('SWIPE_DOWN');
});
WS.subscribe("gesture:myo:WAVE_IN", function () {
WS.control('SWIPE_LEFT');
});
WS.subscribe("gesture:myo:WAVE_OUT", function () {
WS.control('SWIPE_RIGHT');
});
WS.subscribe("gesture:myo:FIST", function () {
WS.control('TAP');
});
WS.subscribe("gesture:myo:FINGERS_SPREAD", function () {
WS.control('SWIPE_DOWN');
});
WS.myoPair(WS.myoTrain);
}
window.onload = main;
</script></body></html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment