Search found 6 matches

by francinnov
Thu Nov 22, 2018 7:48 pm
Forum: ESP32 Arduino
Topic: Cannot modify the port forwarding to ESP server
Replies: 1
Views: 3848

Cannot modify the port forwarding to ESP server

Hello everybody, In my code, I use my ESP32 as a server to receive HTTP request from a client server. What I'm trying to do : I want to change the listening port of my ESP32 server. But when I change this port, nothing work anymore... Of course I have entered the port forwarding in my router. Would ...
by francinnov
Fri Nov 09, 2018 10:51 am
Forum: ESP32 Arduino
Topic: How can webserver send data to ESP32?
Replies: 3
Views: 4588

Re: How can webserver send data to ESP32?

Thank you both of you for your answers !
by francinnov
Fri Nov 09, 2018 10:00 am
Forum: ESP32 Arduino
Topic: How can webserver send data to ESP32?
Replies: 3
Views: 4588

How can webserver send data to ESP32?

Hello, I have an Arduino uno which communicates via UART with an ESP32 (WROOM-32) board. The ESP32 sends any update coming from the Arduino via POST request to my webserver. From my webserver, I would like to send data to my ESP32 to update the Arduino UNO actions. I'm not a specialist about HTTP pr...
by francinnov
Tue Nov 06, 2018 5:24 pm
Forum: ESP32 Arduino
Topic: How display POST request from ESP32 on webserver
Replies: 3
Views: 8405

Re: How display POST request from ESP32 on webserver

Eventually, I have checked my access logs and they seem OK, this is the access.log content : 192.168.0.254 - - [06/Nov/2018:17:09:54 +0000] "POST /postfile/receive.php HTTP/1.1" 200 336 "-" "ESP32HTTPClient" We can see the value 336 which corresponds to the number of bytes received by the server (if...
by francinnov
Tue Nov 06, 2018 9:41 am
Forum: ESP32 Arduino
Topic: How display POST request from ESP32 on webserver
Replies: 3
Views: 8405

How display POST request from ESP32 on webserver

Hi, I have a NGINX server on a raspberry pi. I want to send a POST request from my ESP32 board to the NGINX web-server. I use this code I found in a tutorial: #include <WiFi.h> #include <HTTPClient.h> const char* ssid = "freebox_FSVWVO"; const char* password = "legendaireinvincible1234"; void setup(...