Hello
I wanted to use the ESP8266-12 ( the larger one with a socket for an external antenna ) to display temperature values via the WWW.
For now, I am communicating with it via a terminal. The module starts up, and following the examples I try to display something.
I model this page - admittedly an Arduino, but you can trace what is sent.
The communication goes as follows:
the problem arises when I want to send text.
I want to send 25 characters first
i.e. I should send first
If I understood correctly, first I send the information what the text length will be and then the text itself - at least that's how I did it when sending emails over GPRS via SIM800L and it worked there.
I wanted to use the ESP8266-12 ( the larger one with a socket for an external antenna ) to display temperature values via the WWW.
For now, I am communicating with it via a terminal. The module starts up, and following the examples I try to display something.
I model this page - admittedly an Arduino, but you can trace what is sent.
The communication goes as follows:
Code: Text
the problem arises when I want to send text.
I want to send 25 characters first
Code: Text
i.e. I should send first
Code: Text
If I understood correctly, first I send the information what the text length will be and then the text itself - at least that's how I did it when sending emails over GPRS via SIM800L and it worked there.