Hi there,
Maybe someone could help me find out what is going on.
I have very simple sketch having only 2 external libraries (see my platforio.ini file)
[env:esp32-s3-devkitc-1]
platform = espressif32
board = esp32-s3-devkitc-1
framework = arduino
platform_packages =
framework-arduinoespressif32@https://github.com/espressif/arduino-esp32.git#2.0.5
build_flags =
-D LV_LVGL_H_INCLUDE_SIMPLE
-D BOARD_HAS_PSRAM
-D ARDUINO_USB_MODE=1
-D ARDUINO_USB_CDC_ON_BOOT=1
;board_build.partitions = default_8MB.csv
board_build.arduino.memory_type = qio_opi
;board_build.flash_size = 8MB
monitor_speed = 115200
lib_deps =
mathertel/OneButton@^2.0.3
esphome/ESP32-audioI2S@^2.0.6
When I execute this there is constant
Button 1 longPress
event. Of course you can see also
Button 1 longPress start
at the begin but later there is only Button 1 longPress. Like it would be on GPIO constant LOW signal.
But if I have sketch without Audio library everything works just fine.
Is there something I should change / check to have it work?
Any comment will be appreciated.
BTW in Arduino IDE all works as expected.