Search found 4 matches

by asma-moh
Sun Oct 29, 2023 4:55 pm
Forum: General Discussion
Topic: create multi files
Replies: 2
Views: 970

Re: create multi files

To be able to use types and functions from other source files or libraries, your .c file needs to #include the respective header files; it can also do so indirectly: Add #include "webServer.h" in your webServer.c This way, everything #included in webServer.h is also included (and visible) in webSer...
by asma-moh
Sun Oct 29, 2023 4:51 pm
Forum: General Discussion
Topic: softAP_sta example problem
Replies: 0
Views: 410

softAP_sta example problem

Hi, I am setting up the softAP_sta example from the esp-idf on GitHub, but I cannot have both modes simultaneously. When I only initialize the ssid and pass variables for the station mode or only initialize the ssid and pass variables for the AP mode, the code works and I can see that it performs ad...
by asma-moh
Wed Aug 23, 2023 8:05 am
Forum: ESP-IDF
Topic: Mesh and webserver
Replies: 0
Views: 751

Mesh and webserver

err3.JPG err2.JPG err1.JPG Hi! I want to program an ESP_IDF project that enable communication between 2 esp32 using mesh networking.Additionally, I want to run a web server on parent node to allow users to send on or off command to manage the LEDs of the child nodes. To achive this, I have combined...
by asma-moh
Sun Aug 13, 2023 2:26 pm
Forum: General Discussion
Topic: create multi files
Replies: 2
Views: 970

create multi files

Dear ESP32 forum members, I am writing to seek your help regarding an issue I am facing while creating my lib to organize my project. I have been trying to find helpful sources to learn how to manage my files and related functionalities, but unfortunately, I have not been successful. I am currently ...