Search found 4 matches
- Thu Jun 20, 2024 12:33 am
- Forum: General Discussion
- Topic: problem with sd in esp32
- Replies: 1
- Views: 824
problem with sd in esp32
Hello, I have a problem connecting a microsd to an esp32. I have these declaration at the beginning of my code #include <stdio.h> #include <stdlib.h> #include <string.h> #include "freertos/FreeRTOS.h" #include "freertos/task.h" #include "esp_log.h" #include "sdmmc_cmd.h" #include "esp_vfs_fat.h" #in...
- Fri May 31, 2024 11:14 am
- Forum: General Discussion
- Topic: How to connect my ESP32 to different Wi-Fi networks in sta mode
- Replies: 1
- Views: 682
How to connect my ESP32 to different Wi-Fi networks in sta mode
Hello, I am trying to get my ESP32 in sta mode to connect to different wifi networks, the esp initially connects to an ESP32 in AP mode, that is, an ESP32 in server mode, the code does all the configuration so that it can connect via wifi to the ESP32 in ap mode and also for my wifi network, thanks ...
- Mon May 27, 2024 5:15 am
- Forum: General Discussion
- Topic: Help with using cURL in ESP32 Project
- Replies: 3
- Views: 2602
Re: Help with using cURL in ESP32 Project
That's the right approach. Make sure you define the include paths correctly and include cURL's sources in the build, or if you already have the lib precompiled for your ESP tell the linker that you want it linked in, see e.g https://docs.espressif.com/projects/esp-idf/en/stable/esp32/api-guides/bui...
- Sun May 26, 2024 1:23 am
- Forum: General Discussion
- Topic: Help with using cURL in ESP32 Project
- Replies: 3
- Views: 2602
Help with using cURL in ESP32 Project
Hello, I'm working on an ESP32 project and having some trouble integrating cURL. Initially, my project structure looked like this: Project ├── MyLibs/ │ ├── rol.h │ ├── web.h │ ├── APImain.h ├── second/ │ ├── Rol/ │ │ ├── roles.c │ │ └── CMakeLists.txt │ └── API/ │ ├── APImain.c │ └── CMakeLists.txt...