Search found 4 matches

by jeremyjh
Fri Sep 27, 2019 2:13 pm
Forum: ESP-IDF
Topic: IDE for ESP-IDF
Replies: 5
Views: 8133

Re: IDE for ESP-IDF

I'm using CLion and quite happy with it. It is not free, but it is an excellent IDE and a good value. Its native project format is CMake so it integrates well with IDF.
by jeremyjh
Thu Sep 26, 2019 10:32 pm
Forum: Showcase
Topic: ESP32 TFT display library
Replies: 74
Views: 482760

Re: ESP32 TFT display library

@huybk213 Hopefully you figured it out, but for anyone else you just need to change the RGB settings; by default it uses GBR, to change to RGB in tftspi.h #define TFT_RGB_BGR 0x00 I also wanted to mention, anyone who wants to use this library with the 4.0 release branch, my fork supports this and al...
by jeremyjh
Sun Sep 22, 2019 7:20 pm
Forum: ESP-IDF
Topic: Best way to use c++ wrappers of Arduino Lib
Replies: 1
Views: 2895

Re: Best way to use c++ wrappers of Arduino Lib

Hi, that Arduino library only builds on ESP 3.2 and GCC 5.2. If you are getting the ethernet missing error, it makes me think you are trying to build with master or 4.0 release branch, which can't be done presently. I think your best bet is just cherry-pick the files you want out of the repo. It doe...
by jeremyjh
Sun Sep 22, 2019 1:34 pm
Forum: ESP-IDF
Topic: Generate a Simple Audio Tone
Replies: 0
Views: 2330

Generate a Simple Audio Tone

Hi, I'm having a really hard time finding any information about something that sounds pretty simple: I want to generate a tone at a given frequency using the esp-idf libraries. I did find one example using audio https://github.com/espressif/esp-idf/tree/master/examples/peripherals/i2s_adc_dac but I ...