From b0f436d3e32e2b1c85e0b0527a4f5588cc16192f Mon Sep 17 00:00:00 2001 From: Mansour Behabadi Date: Tue, 1 Sep 2020 23:15:23 +1000 Subject: [PATCH] config/web: more rate tuning --- configurer/web/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configurer/web/index.html b/configurer/web/index.html index 79bdfcd..4228846 100644 --- a/configurer/web/index.html +++ b/configurer/web/index.html @@ -314,7 +314,7 @@

i => i.toString(2).padStart(8, "0") ).join("") + "0"; pulses = Array.from(bits).map( - x => (x == "0") ? "1100" : "11110000" + x => (x == "0") ? "100" : "111000" ).join("") + "1"; curPulse = 0; progEl.disabled = true;