Skip to content

Instantly share code, notes, and snippets.

@connerbrooks
Created April 17, 2014 14:57
Show Gist options
  • Save connerbrooks/10989779 to your computer and use it in GitHub Desktop.
Save connerbrooks/10989779 to your computer and use it in GitHub Desktop.
[wearscript] Wake on Look at Screen
<html style="width:100%; height:100%; overflow:hidden">
<head>
</head>
<body style="width:100%; height:100%; overflow:hidden; margin:0">
<canvas id="canvas" width="640" height="360" style="display:block"></canvas>
<script>
function server() {
WS.log('Welcome to WearScript');
WS.say('Welcome to WearScript');
WS.gestureCallback('onEyeGesture', function (name) {
WS.log('onEyeGesture: ' + name);
if (name == 'LOOK_AT_SCREEN') {
WS.wake();
}
});
}
function main() {
if (WS.scriptVersion(1)) return;
WS.serverConnect('{{WSUrl}}', server);
}
window.onload = main;
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment