You've already forked TEF6686_ESP32
Only log RT in scanner when holdtime > 5 seconds
This commit is contained in:
@@ -271,7 +271,7 @@ byte addRowToCSV() {
|
||||
|
||||
// Replace commas in the station name and radio text to avoid CSV conflicts
|
||||
String stationName = radio.rds.stationName;
|
||||
String radioTextModified = radioText;
|
||||
String radioTextModified = (scanhold > 4 ? radioText : "");
|
||||
stationName.replace(",", " "); // Replace commas in station name
|
||||
radioTextModified.replace(",", " "); // Replace commas in radio text
|
||||
|
||||
|
||||
Reference in New Issue
Block a user