From 91570a355f3a41e20d1f5209a58ad0cc1ff4d3bf Mon Sep 17 00:00:00 2001 From: KubaPro010 Date: Sat, 21 Feb 2026 22:27:48 +0100 Subject: [PATCH] =?UTF-8?q?apparantly=20scan=20has=20db=CE=BCv=20but=20sig?= =?UTF-8?q?nal=20has=20dbf=3F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- xrd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xrd.py b/xrd.py index 4274585..28f634e 100644 --- a/xrd.py +++ b/xrd.py @@ -119,7 +119,7 @@ def process_command(tef: TEF6686, data: bytes, state: dict, conn: socket.socket) continue _, level, *_ = d if (d := tef.FM_Get_Quality_Data()) else (None, None) if level is None: continue - conn.sendall(str(freq * 10).encode() + b" = " + str((level / 10) + 11.25).encode() + b", ") + conn.sendall(str(freq * 10).encode() + b" = " + str((level / 10)).encode() + b", ") conn.sendall(b"\n") tef.FM_Tune_To(1, state["last_tune"])