From 8afcffedd639206fbca38e9962d3e8c111b57463 Mon Sep 17 00:00:00 2001 From: namke Date: Sat, 16 Sep 2023 18:26:35 +0100 Subject: [PATCH] No longer dump SysEx to log --- mb-1Setter/editor.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mb-1Setter/editor.html b/mb-1Setter/editor.html index 0387e40..eadfa8a 100644 --- a/mb-1Setter/editor.html +++ b/mb-1Setter/editor.html @@ -16,7 +16,7 @@ access = await navigator.requestMIDIAccess({ sysex: true }); } catch { const shellBlock = document.getElementById("shell"); - shellBlock.innerHTML += "your browser doesn't handle webMIDI :'(" + shellBlock.innerHTML += "It looks like your browser doesn't handle webMIDI — Sorry!" return null; } @@ -137,7 +137,7 @@ const transmit = await midi(chooser("tx")); function send(line) { - shellBlock.innerHTML += '' + line + '\n'; + //shellBlock.innerHTML += '' + line + '\n'; const words = line.split(/\s+/).filter(Boolean); const bytes = words.map((x) => Number("0x" + x));