ESP32-audioI2S
ESP32-audioI2S copied to clipboard
Sequence 
Some stations have three characters  at the beginning of the title. A small typo in the code, it needs to be changed.
JETHRO TULL - Budapest
if ((buff[pos + 1] & 0xC0) != 0x80 || (buff[pos + 22] & 0xC0) != 0x80) isUTF8 = false;
or
if ((buff[pos + 1] & 0xC0) != 0x80 || (buff[pos + 2] & 0xC0) != 0x80) isUTF8 = false;