Change port to interface to the web server #461
-
Hi, first of all thanks for the examples and the code you posted, they are very helpful. I wanted to ask you: I'm trying this example that creates the web server with the ESP32 IP address and port 80, but if I wanted to change the port to interface with the web server, how could I do it? Which file should I go to? Thank you for your availability and for all the work you have done! |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 10 replies
-
This is currently hard coded in the AudioServer class: the class variables have WiFiServer server = WiFiServer(80); |
Beta Was this translation helpful? Give feedback.
-
What you see are warnings and not errors. You don't need to upgrade. You can to one of the following:
|
Beta Was this translation helpful? Give feedback.
-
Last thing: if I wanted to use DMA for greater efficiency, in which file should I make changes? Or do you already have an example using the Web server and DMA? Thanks for all the help |
Beta Was this translation helpful? Give feedback.
-
Are you working with an ESP32 ? This does not have any generic DMA API like e.g. the STM32 Microcontrollers. So I am not sure what you are referring to... |
Beta Was this translation helpful? Give feedback.
-
You would just turn up the volume on your computer. Alternaively you can try to modify the Volume as described in the Wiki |
Beta Was this translation helpful? Give feedback.
This is currently hard coded in the AudioServer class: the class variables have WiFiServer server = WiFiServer(80);
I convert this to an issue because I think this should be customizable