From 185ee2ffebb654a0e7a62bbf8e4275fc2d99d802 Mon Sep 17 00:00:00 2001 From: Sjef Verhoeven PE5PVB Date: Mon, 19 Jun 2023 21:40:03 +0200 Subject: [PATCH] Fix: PI was not correctly send to Stationlist --- TEF6686_ESP32.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TEF6686_ESP32.ino b/TEF6686_ESP32.ino index a66179f..7fdf6d7 100644 --- a/TEF6686_ESP32.ino +++ b/TEF6686_ESP32.ino @@ -2308,7 +2308,7 @@ void showPI() { PIold = radio.rds.picode; if (wifi) { Udp.beginPacket(remoteip, 9030); - Udp.print("from=TEF tuner;PI=" + String(radio.rds.picode)); + Udp.print("from=TEF tuner;PI=" + String(radio.rds.picode,4)); Udp.endPacket(); } strcpy(radioIdPrevious, radio.rds.picode);