I am trying to combine two libraries on an ESP32.
I can run each of them alone, but not together. I want to make a BT-Speaker as a Gift for my gf.
I want the speaker to play an Audio-file and afterwards run the BT-Sink.
But everytime I try to enable both at once (or after each other), the audio file is not playing and the BT-Script starts running directly. When I comment one of them out, the other one works.
I hope someone can help. I am sure there is an easy fix.
Here is my .ino File:
`
// Playing a digital WAV recording repeatadly using the XTronical DAC Audio library
// prints out to the serial monitor numbers counting up showing that the sound plays
// independently of the main loop
// See www.xtronical.com for write ups on sound, the hardware required and how to make
// the wav files and include them in your code
#include "BluetoothA2DPSink.h"
BluetoothA2DPSink a2dp_sink;
#include "SoundData.h"
#include "XT_DAC_Audio.h"
#include "Darthatmet.h"
XT_Wav_Class Darthatmet(Darth); // verlinkung zur Darthatmet.h
XT_Wav_Class ForceWithYou(Force);
XT_Sequence_Class Sequence;
XT_DAC_Audio_Class DacAudio(25,0); // Create the main player class object. Use GPIO 25, one of the 2 DAC pins and timer 0
void setup() {
Sequence.RepeatForever=false;
Sequence.AddPlayItem(&Darthatmet);
Sequence.AddPlayItem(&ForceWithYou);
DacAudio.Play(&Sequence);
const i2s_config_t i2s_config = {
.mode = (i2s_mode_t) (I2S_MODE_MASTER | I2S_MODE_TX | I2S_MODE_DAC_BUILT_IN),
.sample_rate = 44100, // corrected by info from bluetooth
.bits_per_sample = (i2s_bits_per_sample_t) 16, // the DAC module will only take the 8bits from MSB
.channel_format = I2S_CHANNEL_FMT_RIGHT_LEFT,
.communication_format = (i2s_comm_format_t)I2S_COMM_FORMAT_STAND_MSB,
.intr_alloc_flags = 0, // default interrupt priority
.dma_buf_count = 8,
.dma_buf_len = 64,
.use_apll = false
};
a2dp_sink.set_i2s_config(i2s_config);
a2dp_sink.start("DarthVader-BT");
}
void loop() {
DacAudio.FillBuffer(); // Fill the sound buffer with data
}
`
I allready tried putting stuff inside the loop or using a true/false statement. But it didn't work or i am just not educated enough with arduinoc-ode to do it :(
Ok, i found the solution :) After some hours of testing I did it with "millis()". It can be used to have a timer which runs in the "background".
I did it like this and it works like intended!
Next step are programmable LEDs (ws2812b) and 3D-Design/Printing the Housing :)
Here is my code: