hotfix for tune freq

This commit is contained in:
Marek Farkaš
2025-05-30 22:29:11 +02:00
parent cf298cce1f
commit 50880e4094
+1 -1
View File
@@ -41,7 +41,7 @@ function tuneDown() {
function tuneTo(freq) { function tuneTo(freq) {
previousFreq = getCurrentFreq(); previousFreq = getCurrentFreq();
socket.send("T" + ((parseFloat(freq)).toFixed(1) * 1000)); socket.send("T" + ((parseFloat(freq)) * 1000).toFixed(3));
} }
function resetRDS() { function resetRDS() {