I want to test on the maximum size of a message that can be sent by the ESP8266 server.
I used the B$R code from
https://www.b4x.com/android/forum/threads/esp8266-getting-started.68740/
This section does not work (astream.write2....: error: missing parameter)
How to do it right?
I used the B$R code from
https://www.b4x.com/android/forum/threads/esp8266-getting-started.68740/
This section does not work (astream.write2....: error: missing parameter)
B4X:
Sub Timer1_Tick
Dim ar(3000) As Byte
If server.Socket.Connected Then
astream.Write2(ar(),1,1000)' "Time here is: ", Millis)))
End If
End Sub