Search found 6 matches

by pppTec
Fri Aug 09, 2024 8:22 am
Forum: ESP-IDF
Topic: HTTP Server stops responding with NTP
Replies: 2
Views: 1028

Re: HTTP Server stops responding with NTP

Is there anyone who can help me maybe?
by pppTec
Thu Jul 18, 2024 8:15 am
Forum: ESP-IDF
Topic: HTTP Server stops responding with NTP
Replies: 2
Views: 1028

HTTP Server stops responding with NTP

I am trying to get the HTTP server working together with the NTP and MQTT services. I am using ESP-IDF 5.2. However, I am struggling to get it working stable. I thought I got NTP and HTTP server running together stable, so I moved on to MQTT, but as soon as the MQTT service is trying to connect to t...
by pppTec
Fri Jun 16, 2023 8:10 am
Forum: ESP-IDF
Topic: http server refuses connection
Replies: 2
Views: 1980

Re: http server refuses connection

There were different things going wrong in my code. It was easier to put the Wifi driver in APSTA mode. Then you can use Wifi connect / disconnect for connecting with the access point for station mode while the ESP32 soft AP remains active. Then running the http server will just work normally instea...
by pppTec
Wed Apr 26, 2023 8:48 pm
Forum: ESP-IDF
Topic: http server refuses connection
Replies: 2
Views: 1980

http server refuses connection

When I'm running my ESP32-S2 in Access Point (AP) mode with a fixed IP and the ESP IDF http server running, I am able to connect to the server (port 80). However, I made the application such that I can change to station mode (STA), stop the http server, restart the wifi and start the server again. A...
by pppTec
Fri Apr 21, 2023 8:01 am
Forum: Hardware
Topic: ESP32-S2 - GPIO 39 not working as ouput?
Replies: 2
Views: 1149

Re: ESP32-S2 - GPIO 39 not working as ouput?

That worked! Many thanks!
by pppTec
Sun Apr 16, 2023 12:52 pm
Forum: Hardware
Topic: ESP32-S2 - GPIO 39 not working as ouput?
Replies: 2
Views: 1149

ESP32-S2 - GPIO 39 not working as ouput?

I'm trying to use GPIO 39 as an output to drive an LED. I know on the ESP32 WROOM that's not possible, but it should be possible on the ESP32-S2. However, the output remains low. gpio_set_direction(39, GPIO_MODE_OUTPUT); gpio_set_level(39, HIGH); What can I do? Is it conflicting with jtag (since IO3...