I was send slider thumb position (float value) using "SendText",but it sending each value as char

i was send slider thumb position (float value) using "SendText",but it sending each value as char like (if value is 23.065 then it send as ==>char received='2' then next char '3' then '.' then '0' then '6' then '5' in each line and it continues to next value also ),so is there any solutiobn to send each float slider value
`

Canned Reply: ABG- Export & Upload .aia)
Export your .aia file and upload it here.

export_and_upload_aia

Also upload your sketch.

I would suspect that is not the case Komera - it is more likely your Arduino code is not using the best code to receive.

When the App sends the text, the last character needs to be a terminator. For example 23.065#

Then in the Arduino code:

MyVal = Serial.readStringUntil('#')

'Serial' will be whatever name for Serial comms that you have initiated.