i have the following problem:
I send 7 bytes to the esp (decimal): 2 5 22 0 4 3 22
I use the following code and get : 2 5 22 0 0 0 0
(if i send 11 bytes system hangs up)
serial2begin 9600, 14 , 12
textbox z$
serial2branch [serial2in]
wait
[serial2in]
serial2input a$
l = len(a$)
for i = 1 to l
b$ = asc(mid(a$,i,1))
z$ = z$ & " " & b$
next i
return