Skip to content

Instantly share code, notes, and snippets.

@bwhite
Last active May 26, 2016 14:38
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save bwhite/8745893 to your computer and use it in GitHub Desktop.
Save bwhite/8745893 to your computer and use it in GitHub Desktop.
[wearscript] Scan a QR code with Glass and have links open in tabs on your phone/laptop
<html style="width:100%; height:100%; overflow:hidden">
<body style="width:100%; height:100%; overflow:hidden; margin:0">
<script>
function qr(data, format) {
WS.publish('urlopen', atob(data));
}
function server() {
WS.say('Scan a QR Code');
WS.qr('qr');
}
function main() {
if (WS.scriptVersion(1)) return;
WS.serverConnect('{{WSUrl}}', 'server');
}
window.onload = main;
</script>
</body>
</html>
{
"name": "QR Scanner"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment