diff --git a/app.js b/app.js
index 51aa8afc041cd98292f891d35a4dc35e458c670e..15a7c00691799c0488be07204433609c24f38bf5 100644
--- a/app.js
+++ b/app.js
@@ -216,14 +216,45 @@ function tick() {
 
     latencyDiv.innerText = `Frame latency: ${delta}ms`;
 
-    // reset
-    qr = {};
-
     if (code?.data.length > 0) {
+      // reset
+      qr = {
+        //a: qr.a, // don't reset a!
+      };
+
       latencyScan.innerText = `Scan latency: ${delta}ms`;
 
-      // TODO Spencer
-      if (code.data == "ABCDEFGHIJKLNOPQRSTUVWXYZ") {
+      // Left
+      if (code.data.includes("OP3%S") || code.data.includes("OP9OS")) {
+        qr.left = true;
+      }
+
+      // Right
+      if (
+        code.data.includes("OO$:S") ||
+        code.data.includes("OPJMS") ||
+        code.data.includes("OOZ6S") ||
+        code.data.includes("OPZ6S") ||
+        code.data.includes("OPCHS") ||
+        code.data.includes("OPD S") ||
+        code.data.includes("OOD S") ||
+        code.data.includes("OPGTS") ||
+        code.data.includes("OO PS") ||
+        code.data.includes("OOP8S")
+      ) {
+        qr.right = true;
+      }
+
+      // A button
+      if (code.data.startsWith("ARC")) {
+        qr.a = false;
+      } else if (
+        code.data.startsWith("A7H") ||
+        code.data.startsWith("ANH") ||
+        code.data.startsWith("A8+") ||
+        code.data.startsWith("A8H") ||
+        code.data.startsWith("A9H")
+      ) {
         qr.a = true;
       }
 
diff --git a/jsQR/dist/jsQR.js b/jsQR/dist/jsQR.js
index 1b242c29380531c138a0531bb176fbc9c97fc4cd..f83e48d99110ef4edbb01fa7a3c490cc63ec3098 100644
--- a/jsQR/dist/jsQR.js
+++ b/jsQR/dist/jsQR.js
@@ -575,9 +575,9 @@ function decodeMatrix(matrix) {
         if (!correctedBytes) {
           return null;
           }*/
-        if (resultIndex == 0) {
-            console.log(dataBlock.codewords[0]);
-        }
+        /*if(resultIndex == 0) {
+          console.log(dataBlock.codewords[0]);
+          }*/
         for (var i = 0; i < dataBlock.numDataCodewords; i++) {
             resultBytes[resultIndex++] = dataBlock.codewords[i];
         }
diff --git a/jsQR/docs/jsQR.js b/jsQR/docs/jsQR.js
index 1b242c29380531c138a0531bb176fbc9c97fc4cd..f83e48d99110ef4edbb01fa7a3c490cc63ec3098 100644
--- a/jsQR/docs/jsQR.js
+++ b/jsQR/docs/jsQR.js
@@ -575,9 +575,9 @@ function decodeMatrix(matrix) {
         if (!correctedBytes) {
           return null;
           }*/
-        if (resultIndex == 0) {
-            console.log(dataBlock.codewords[0]);
-        }
+        /*if(resultIndex == 0) {
+          console.log(dataBlock.codewords[0]);
+          }*/
         for (var i = 0; i < dataBlock.numDataCodewords; i++) {
             resultBytes[resultIndex++] = dataBlock.codewords[i];
         }
diff --git a/jsQR/src/decoder/decoder.ts b/jsQR/src/decoder/decoder.ts
index 350c548463d01a63071979d43fc9c24254c0a82b..32fc5311d5c46cf26dfb4428e59f45269ffdaf33 100644
--- a/jsQR/src/decoder/decoder.ts
+++ b/jsQR/src/decoder/decoder.ts
@@ -313,9 +313,9 @@ function decodeMatrix(matrix: BitMatrix) {
       return null;
       }*/
 
-    if(resultIndex == 0) {
+    /*if(resultIndex == 0) {
       console.log(dataBlock.codewords[0]);
-    }
+      }*/
     
     for (let i = 0; i < dataBlock.numDataCodewords; i++) {
       resultBytes[resultIndex++] = dataBlock.codewords[i];