Skip to content

Instantly share code, notes, and snippets.

@connerbrooks
Created March 27, 2014 18:06
Show Gist options
  • Save connerbrooks/9814205 to your computer and use it in GitHub Desktop.
Save connerbrooks/9814205 to your computer and use it in GitHub Desktop.
[wearscript] Pebble->Glass control over adb with pub sub
<html style="width:100%; height:100%; overflow:hidden">
<body style="width:100%; height:100%; overflow:hidden; margin:0">
<script>
// This script must run on phone and glass to get pebble clicks
function main() {
if (WS.scriptVersion(1)) return;
WS.pebbleSetTitle('Pebble->Glass ADB Control');
WS.pebbleSetSubtitle('');
WS.pebbleSetBody('connected!', false);
WS.say('connected');
WS.subscribe('pebbleControl', function (chan, name) {
WS.log('sub cb ' + name);
switch (name) {
case 'up':
WS.control('SWIPE_LEFT', true);
break;
case 'down':
WS.control('SWIPE_RIGHT', true);
break;
case 'select':
WS.control('TAP', true);
break;
case 'longselect':
WS.control('SWIPE_DOWN', true);
}
});
WS.gestureCallback('onPebbleSingleClick', function (name) {
WS.log('onPebbleSingleClick: ' + name);
WS.publish('pebbleControl', name);
});
WS.gestureCallback('onPebbleLongClick', function (name) {
WS.log('onPebbleLongClick: ' + name);
WS.publish('pebbleControl', 'long'+name);
});
}
window.onload = main;
</script>
</body>
</html>
okay what am I doing?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment