RasaAudio / gSpectrumAnalyzer

ESP32 Audio Spectrum Display With FastLED , Demos and Web interface
MIT License
6 stars 5 forks source link

issues with current libraries #1

Open Juris3D opened 3 months ago

Juris3D commented 3 months ago

Hello! Thank You for you work on this! Since you posted, libraries got updates, and there are some issues. I tried to break through gradually by making changes, searching on Web, but I am still stuck on this: exit status 1 'arduinoFFT' does not name a type; did you mean 'ArduinoFFT'? Could you maybe give some hints for fixing? I would appreciate very much. Thank You! I am using Arduino IDE 1.8.19, and updated libraries that are required in this project.

csrupss commented 2 months ago

The author recommended using only these versions of libraries: Adafruit_BusIO at version 1.7.1 Adafruit_GFX_Library at version 1.10.4 arduinoFFT at version 1.5.6 ESP32_HUB75_LED_MATRIX_PANEL_DMA_Display at version 2.0.5 FastLED at version 3.4.0 FastLED_NeoMatrix at version 1.1 Framebuffer_GFX at version 1.0 My code was compiled strictly with the library of this version - arduinoFFT 1.5.6!

csrupss commented 2 months ago

If you get a compilation error saying "adc_gpio_init" is not declared, it is because the function is now deprecated. Fix the error by adding:

include <driver/adc_deprecated.h>

to the file I2SPLUGIN.h

Juris3D commented 2 months ago

Thank You for all the info! And, I apologize that I have missed this aspect, about particular Arduino IDE and particular libraries!