Skip to content

Instantly share code, notes, and snippets.

@minakhan01
Last active August 29, 2015 14:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save minakhan01/d3a560b41b34c6b87312 to your computer and use it in GitHub Desktop.
Save minakhan01/d3a560b41b34c6b87312 to your computer and use it in GitHub Desktop.
[wearscript] client.html
<!-- WearScript on Glass/Android -->
<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.serverConnect('{{WSUrl}}', function () {
WS.sensorOn('accelerometer', .25);
WS.cameraOn(1);
WS.dataLog(false, true, .15);
});
}
window.onload = main;
</script></body></html>
{"name":"Example"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment