From 50880e40945090e0e5e9215890941c68c080cd5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Farka=C5=A1?= Date: Fri, 30 May 2025 22:29:11 +0200 Subject: [PATCH] hotfix for tune freq --- web/js/api.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/js/api.js b/web/js/api.js index 86ffc13..ac64042 100644 --- a/web/js/api.js +++ b/web/js/api.js @@ -41,7 +41,7 @@ function tuneDown() { function tuneTo(freq) { previousFreq = getCurrentFreq(); - socket.send("T" + ((parseFloat(freq)).toFixed(1) * 1000)); + socket.send("T" + ((parseFloat(freq)) * 1000).toFixed(3)); } function resetRDS() {