wiwit Member Licensed User Longtime User Mar 27, 2017 #1 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
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
Erel B4X founder Staff member Licensed User Longtime User Mar 27, 2017 #2 There are many examples. However your question or request is a bit to broad. Do you know how to read the serial data? Upvote 0
There are many examples. However your question or request is a bit to broad. Do you know how to read the serial data?
wiwit Member Licensed User Longtime User Apr 1, 2017 #3 Erel said: There are many examples. However your question or request is a bit to broad. Do you know how to read the serial data? Click to expand... 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
Erel said: There are many examples. However your question or request is a bit to broad. Do you know how to read the serial data? Click to expand... 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