Skip to content

Instantly share code, notes, and snippets.

@connerbrooks
Created April 5, 2014 20:11
Show Gist options
  • Save connerbrooks/9997501 to your computer and use it in GitHub Desktop.
Save connerbrooks/9997501 to your computer and use it in GitHub Desktop.
[wearscript] boardr ocr
<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 boardr');
WS.say('Welcome to boardr');
// Create for taking pictures and running
var tree = new WS.Cards();
tree.add('Welcome to boardr',
'Tap to take a picture',
function () {WS.say('selected')},
function () {WS.say('tapped')},
'Take a Picture',
function () {
WS.cameraPhotoData(function (x) {
document.getElementById('image').setAttribute('src', 'data:image/jpg;base64,' + x);
});
},
'Menu1',
function () {WS.say('menu1')
});
// Picture tree, need to add pictures
tree.add('Pictures', 'recently taken', (new WS.Cards()).add('Child0', '0').add('Child1', '1'));
WS.cardTree(tree);
WS.displayCardTree();
}
function main() {
if (WS.scriptVersion(1)) return;
ctx = document.getElementById('canvas').getContext("2d");
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