-->
Page 1 of 1

Doubt: In soft-AP mode, server.send ()

PostPosted: Wed Mar 14, 2018 12:23 pm
by Ciriaco
I use esp8266/Arduino ESP8266WebServer lib

doubt:
In soft-AP mode, server.send(200, "text/plain", String (lalala));

Is it sent to all connected clients?
Is it possible send different messages to the connected clients?

Regards

Re: Doubt: In soft-AP mode, server.send ()

PostPosted: Wed Mar 14, 2018 2:15 pm
by jankop
Ciriaco wrote:Is it sent to all connected clients?
Is it possible send different messages to the connected clients?

1. NO
2. Yes
It is not message, it is answer the question.

Re: Doubt: In soft-AP mode, server.send ()

PostPosted: Wed Mar 14, 2018 4:28 pm
by Ciriaco
jankop wrote:
Ciriaco wrote:Is it sent to all connected clients?
Is it possible send different messages to the connected clients?

1. NO
2. Yes
It is not message, it is answer the question.


How can I do it ?