Search found 20 matches

by headquaker
Thu Nov 16, 2023 3:21 pm
Forum: ESP32 Arduino
Topic: Cannot read mp3 after navigate to the next mp3 track
Replies: 2
Views: 4414

Re: Cannot read mp3 after navigate to the next mp3 track

it's because it's impossible to open more then 2 files in same time.
Closing it before playing the mp3 and it works
by headquaker
Wed Nov 15, 2023 10:39 pm
Forum: ESP32 Arduino
Topic: Cannot read mp3 after navigate to the next mp3 track
Replies: 2
Views: 4414

Re: Cannot read mp3 after navigate to the next mp3 track

please I really need help to finish my project. Here is the log when using : /Album1/Track1-2.mp3 info buffers freed, free Heap: 41756 bytes info Reading file: "/Album1/Track1-2.mp3" info MP3Decoder has been initialized, free Heap: 37376 bytes info Content-Length: 14079205 info ID3 framesSize: 4096 ...
by headquaker
Wed Nov 15, 2023 8:35 am
Forum: ESP32 Arduino
Topic: Cannot read mp3 after navigate to the next mp3 track
Replies: 2
Views: 4414

Cannot read mp3 after navigate to the next mp3 track

Hi, I've made a mp3 player for my child. I have an issue that I cannot resolved. The setup : - ESP32S3 - SDCard On loading; the ESP32 load a content.json in the first folder. It reads, based on the json, a preview track mp3 (it is a Text To Speech mp3 generated by a script that says the Title of the...
by headquaker
Mon Nov 06, 2023 9:43 pm
Forum: ESP32 Arduino
Topic: error: reference to 'map' is ambiguous
Replies: 5
Views: 2966

Re: error: reference to 'map' is ambiguous

I called

Code: Select all

#include <esp_wifi.h>
#include "esp_bt.h"

  // Disable Wi-Fi
  esp_err_t results = esp_wifi_stop();

  // Disable Bluetooth
  esp_bt_controller_disable();
  esp_bt_controller_deinit();
no more conflits...
by headquaker
Mon Nov 06, 2023 4:49 pm
Forum: ESP32 Arduino
Topic: error: reference to 'map' is ambiguous
Replies: 5
Views: 2966

Re: error: reference to 'map' is ambiguous

yes I tried but it seems to crash the ESP32.
the screen cannot initiate :(
by headquaker
Mon Nov 06, 2023 3:42 pm
Forum: ESP32 Arduino
Topic: error: reference to 'map' is ambiguous
Replies: 5
Views: 2966

Re: error: reference to 'map' is ambiguous

Make a minimal example that demonstrates it. This is obviously not your actual code, since you aren't including BluetoothSerial.h, which is the source of the conflict. the main code is crashing just with the include touch.h and include BluetoothSerial.h I don't need to add any code further... inclu...
by headquaker
Sun Nov 05, 2023 9:47 pm
Forum: ESP32 Arduino
Topic: error: reference to 'map' is ambiguous
Replies: 5
Views: 2966

error: reference to 'map' is ambiguous

hello, I have a message : In file included from Project\Boite\BoiteAHistoires_v8\Export\BaH6\ui\ui.ino:53: Project\Boite\BoiteAHistoires_v8\Export\BaH6\ui\touch.h: In function 'bool touch_touched()': Project\Boite\BoiteAHistoires_v8\Export\BaH6\ui\touch.h:163:20: error: reference to 'map' is ambiguo...
by headquaker
Sun Nov 05, 2023 4:08 pm
Forum: ESP-IDF
Topic: Conflict between map in touch.h and BluetoothSerial.h
Replies: 1
Views: 626

Conflict between map in touch.h and BluetoothSerial.h

hello, I have a message : In file included from Project\Boite\BoiteAHistoires_v8\Export\BaH6\ui\ui.ino:53: Project\Boite\BoiteAHistoires_v8\Export\BaH6\ui\touch.h: In function 'bool touch_touched()': Project\Boite\BoiteAHistoires_v8\Export\BaH6\ui\touch.h:163:20: error: reference to 'map' is ambiguo...
by headquaker
Mon Oct 16, 2023 7:48 am
Forum: ESP32 Arduino
Topic: Need help to optimise + debug because sound is cracking
Replies: 8
Views: 6254

Re: Need help to optimise + debug because sound is cracking

Hello
okay... but it does not explain in what it could help me... and how should I use it
by headquaker
Thu Oct 12, 2023 5:50 pm
Forum: ESP32 Arduino
Topic: Need help to optimise + debug because sound is cracking
Replies: 8
Views: 6254

Re: Need help to optimise + debug because sound is cracking

250ms is the frequency I am recommending for everything in the loop except for the audio processing. Use a Ticker, or a simple millis() counter. Hello thanks, could you explain please? I understand what you mean but not really how to use it. I think i should put the ticker in the loop() but how to ...