hi,
simple question:
can the fastled library be used in the esp-IDF(MDF) environment?
as the IDF/MDF environment is in C and the fastled library is coded for C++
thanks!
sebasdt
Search found 17 matches
- Mon Mar 29, 2021 12:16 pm
- Forum: General Discussion
- Topic: fastled with esp-IDF or MDF environment
- Replies: 1
- Views: 2279
- Sun Mar 28, 2021 1:22 pm
- Forum: General Discussion
- Topic: [solved] how to add / see a esp32 mesh in the ESPMESH app?
- Replies: 1
- Views: 2519
Re: how to add / see a esp32 mesh in the ESPMESH app?
i just found out myself.... the mesh app couldn't find any esp32 with the ESP-MDF examples. you need to turn your location on before the app is opened. now you can follow the rest of the guide. (github.com/espressif/esp-mdf/tree/master/examples/development_kit) you only need to search for one esp32 ...
- Tue Mar 16, 2021 10:14 pm
- Forum: General Discussion
- Topic: [solved] how to add / see a esp32 mesh in the ESPMESH app?
- Replies: 1
- Views: 2519
[solved] how to add / see a esp32 mesh in the ESPMESH app?
hi all! For a week I'm trying to get into esp mesh with the esp-MDF together with the espressif idf. I have installed the esp-mdf and the esp-idf on a windows machine. compiling, flashing, monitoring and opening the menuconfig works like a charm. i understand how the mesh should work in theory. test...
- Tue Feb 16, 2021 4:40 pm
- Forum: General Discussion
- Topic: OTA over Bluetooth
- Replies: 4
- Views: 12775
Re: OTA over Bluetooth
hahaha, nice 3 years later he gets his answer... i was looking for this too thanks!fbiego wrote: ↑Mon Feb 15, 2021 7:13 amCheck out this implementation of Arduino code https://github.com/fbiego/ESP32_BLE_OTA_Android
I was able to transfer the update.bin file via BLE from the phone to ESP32, 1005392 bytes in 5mins 20sec
- Tue Feb 16, 2021 4:37 pm
- Forum: General Discussion
- Topic: espNOW changing peer mac address.
- Replies: 0
- Views: 3865
espNOW changing peer mac address.
hi all! I have been searching for a while for an answer to my question. so my question is: is there a way to change the MAC address of the peer the sender is sending to? let me explain why I want this and maybe this will clarify my question. I have code that reads a string (in mine case a mac addres...
- Tue Feb 09, 2021 3:32 pm
- Forum: General Discussion
- Topic: save string read from serial com into eeprom
- Replies: 1
- Views: 2731
save string read from serial com into eeprom
hi espressif forum, for a project of mine with an esp32, I would like to read a string (in mine case a mac address) from serial monitor and copy that into EEPROM. once the esp32 reboots or starts up looks for this mac address in EEPROM and stores it in a var. so the esp32 could later send to that ma...
- Mon Jan 11, 2021 1:49 pm
- Forum: General Discussion
- Topic: led Task
- Replies: 3
- Views: 4170
Re: led Task
hi Hack-Mike, if you want to change the state of the LEDs immediate. please don't use the vTaskDelay() this "blocks" or "locks" that bit of code. I rather use millis() for a big delay. you could look at blink without delay of how to use millis() ( http://www.arduino.cc/en/Tutorial/BlinkWithoutDelay ...
- Sat Jan 09, 2021 8:47 am
- Forum: General Discussion
- Topic: help with understandig freeRTOS code
- Replies: 2
- Views: 3396
Re: help with understandig freeRTOS code
WOW thanks for your reply! now I understand what's happening! here below is code for a button ISR but isn't this the same? (wait or is this just for synching between isr task?) The only thing it's without pxHigherPriorityTaskWoken. void IRAM_ATTR isr() { portENTER_CRITICAL(&synch); //Serial.println(...
- Fri Jan 08, 2021 9:01 pm
- Forum: General Discussion
- Topic: S3 USB Support?
- Replies: 4
- Views: 5769
Re: S3 USB Support?
hey dude! I have looked a bit further into this and found this: https://www.cnx-software.com/2020/12/20/esp32-c3-wifi-ble-risc-v-processor-esp8266-price/ searched with: ESP32-C3 Series USB support On that picture it says it would support USB BUT , when I looked in the datasheet: https://www.espressi...
- Fri Jan 08, 2021 8:42 pm
- Forum: General Discussion
- Topic: help with understandig freeRTOS code
- Replies: 2
- Views: 3396
help with understandig freeRTOS code
dear espressif forum, I have used a bit of code but i don't understand fully how it works and what the variables do. This code is used for reading a encoder value and so it needed to be an interupt. void ESP_ISR callBack(Encoder & enc) { BaseType_t pxHigherPriorityTaskWoken = pdFALSE; static int16_t...