Listview konusunda yardıma ihtiyacım var

esp32 wroom 32 ile bir program oluşturdum. bu program hem esp32 buton ile hem de app inventor uygulamasındaki buton ile paralel çalışıyor. ilk gelen veri [“12345.6”,”23456.7”,”123.4”] şeklinde oluyor. burada sadece 3.index olan “123.4” verisini çekip oluşturacağım koordinat adreslerine eklemek için çalışıyorum. ancak ekran görüntüsünde de görüldüğü gibi ilk veriler bozuk geliyor. çözemedim. bana yardım edermisiniz?

I created a program with the ESP32 WROOM 32. This program works in parallel both with the ESP32 button and with the button in the App Inventor application. The first incoming data looks like [“12345.6”, “23456.7”, “123.4”]. Here, I am trying to extract only the 3rd index value, “123.4”, and add it to the coordinate addresses I will create. However, as shown in the screenshot, the first data comes in corrupted. I couldn’t solve it. Can you help me?

See this thread

In short: use a terminating character in your esp32 ( a ‘\n’ for example ) and in the ai2 app use the ReceiveText(-1) that reads till the terminating char ( the terminating char has to be set with the DelimiterByte )

P.S.

Also adding a “start char” helps synchronize tx/rx