I have one central ESP32 as an access point which hosts a webserver. The goal is to display live sensor data from three more ESP32s on this webserver.
These other ESP32s are implemented as stations. The central ESP32 should be able to control the other ones. What is the best approach to manage the communication over WiFi?
I thought of using websockets and get variables, but how to set this up? Or are there better ways? Apart from the WiFi-communication, there are no restrictions, e.g. changing accesspoint to station or the webserver destination is possible.