Search found 5 matches

by fbigrat
Sat Dec 23, 2023 7:52 pm
Forum: General Discussion
Topic: ESP32C6 BLE compilation issues
Replies: 0
Views: 3035

ESP32C6 BLE compilation issues

Hello every one I have some issues to compile the code in attachment to an ESP32C6. IDF compiler error is no such file or directory #include "esp_nimble_hci.h". The is the following : idf_component_register( SRCS "main.c" PRIV_REQUIRES bt PRIV_REQUIRES nvs_flash INCLUDE_DIRS "." ) The BLE device is...
by fbigrat
Fri Dec 01, 2023 8:12 am
Forum: General Discussion
Topic: Compilation issues with 3.0.0 alpha2 library for arduino ide
Replies: 2
Views: 2439

Re: Compilation issues with 3.0.0 alpha2 library for arduino ide

Here are the error messages i get : /home/franck/Documents/Programmation/ESP32/ESP_Now/ESP_NOW_01_Rx/ESP_NOW_01_Rx.ino: In function 'void setup()': /home/franck/Documents/Programmation/ESP32/ESP_Now/ESP_NOW_01_Rx/ESP_NOW_01_Rx.ino:58:28: error: invalid conversion from 'void (*)(const uint8_t*, const...
by fbigrat
Fri Dec 01, 2023 7:59 am
Forum: General Discussion
Topic: Compilation issues with 3.0.0 alpha2 library for arduino ide
Replies: 2
Views: 2439

Re: Compilation issues with 3.0.0 alpha2 library for arduino ide

To complete my last post, the issues occurred with 'ESPnow' and 'ESP32Servo' libraries.
FB
by fbigrat
Thu Nov 30, 2023 9:04 pm
Forum: General Discussion
Topic: Compilation issues with 3.0.0 alpha2 library for arduino ide
Replies: 2
Views: 2439

Compilation issues with 3.0.0 alpha2 library for arduino ide

Hello there I recently installed the 3.0.0 alpha2 library for arduino ide on windows 10 to try ESP32C6. But when i want to compile my old programs for ESP32 (not c3, c6, s3...) the ide gives many compilation errors. If i unisntall the 3.0.0 alpha2 and reinstall 2.0.14, all is OK. Does any one of you...
by fbigrat
Tue Nov 28, 2023 2:43 pm
Forum: General Discussion
Topic: ESP32C6 RGB Builtin LED and BLE
Replies: 0
Views: 2895

ESP32C6 RGB Builtin LED and BLE

Hi every one. I want to display the state of a BLE connection (connected or not) by using the builtin RGB Led (Green; connected; Red : Disconnected). To do so i use the RMT as said in this example : https://espressif-docs.readthedocs-hosted.com/projects/arduino-esp32/en/latest/api/rmt.html. But this...