I have ESP-01 connected to my Arduino Uno and I want to send some data from Uno to remote server.
On remote host I have application which is reading specific socket port.
From Uno using AT commands I'm connecting to remote host and then sending data each second. Everything work good first 30 seconds, but then ESP gets crazy and starts to send to remote server AT commands ("AT+CI") instead of data. but TCP connection is still open and remote servers is receiving "AT+CI" string.
setup
AT+CIPSTART="TCP","100.100.100.100",1234
OK
loop
AT+CIPSEND=5
>
1:3
+IPD...
Do somebody have any idea why it's happening?