Created
March 27, 2014 18:06
-
-
Save connerbrooks/9814205 to your computer and use it in GitHub Desktop.
[wearscript] Pebble->Glass control over adb with pub sub
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"name":""} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
okay what am I doing? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment