Android Question show serial data

wiwit

Member
Licensed User
Longtime User
I have data from avr serial as follows:
ADC1=100
ADC2=300
ADC3=430
I want to display in android is

adc1.Text
adc2.Text
adc3.Text

there any examples of programs?
thank you
 

wiwit

Member
Licensed User
Longtime User
There are many examples. However your question or request is a bit to broad.

Do you know how to read the serial data?
I was confused to find the right example.
The program is already up


B4X:
Sub AStreams_NewData (Buffer() As Byte)
    Dim msg As String
    msg = BytesToString(Buffer, 0, Buffer.Length, "UTF8")

End Sub
 
Upvote 0
Top