File tree Expand file tree Collapse file tree 8 files changed +65
-5
lines changed Expand file tree Collapse file tree 8 files changed +65
-5
lines changed Original file line number Diff line number Diff line change
1
+ /* *
2
+ * @file adc-a2dp.ino
3
+ * @author Phil Schatzmann
4
+ * @brief see https://github.com/pschatzmann/arduino-audio-tools/blob/main/examples/adc-a2dp/README.md
5
+ *
6
+ * @author Phil Schatzmann
7
+ * @copyright GPLv3
8
+ *
9
+ */
1
10
#include " Arduino.h"
2
11
#include " BluetoothA2DPSource.h"
3
12
#include " AudioTools.h"
Original file line number Diff line number Diff line change
1
+ /* *
2
+ * @file adc-serial.ino
3
+ * @author Phil Schatzmann
4
+ * @brief see https://github.com/pschatzmann/arduino-audio-tools/blob/main/examples/adc-serial/README.md
5
+ *
6
+ * @author Phil Schatzmann
7
+ * @copyright GPLv3
8
+ */
9
+
1
10
#include " Arduino.h"
2
11
#include " BluetoothA2DPSource.h"
3
12
#include " AudioTools.h"
Original file line number Diff line number Diff line change
1
+ /* *
2
+ * @file file_mp3-a2dp.ino
3
+ * @author Phil Schatzmann
4
+ * @brief see https://github.com/pschatzmann/arduino-audio-tools/blob/main/examples/file_mp3-a2dp/README.md
5
+ *
6
+ * @author Phil Schatzmann
7
+ * @copyright GPLv3
8
+ */
9
+
1
10
#include < SPI.h>
2
11
#include < SD.h>
3
12
#include " AudioFileSourceSD.h"
Original file line number Diff line number Diff line change
1
+ /* *
2
+ * @file file_raw-a2dp.ino
3
+ * @author Phil Schatzmann
4
+ * @brief see https://github.com/pschatzmann/arduino-audio-tools/blob/main/examples/file_raw-a2dp/README.md
5
+ *
6
+ * @author Phil Schatzmann
7
+ * @copyright GPLv3
8
+ */
1
9
2
10
#include " BluetoothA2DPSource.h"
3
11
#include < SPI.h>
Original file line number Diff line number Diff line change
1
+ /* *
2
+ * @file file_raw-serial.ino
3
+ * @author Phil Schatzmann
4
+ * @brief see https://github.com/pschatzmann/arduino-audio-tools/blob/main/examples/file_raw-serial/README.md
5
+ *
6
+ * @author Phil Schatzmann
7
+ * @copyright GPLv3
8
+ */
9
+
1
10
#include < Arduino.h>
2
11
#include < SPI.h>
3
12
#include < SD.h>
Original file line number Diff line number Diff line change
1
+ /* *
2
+ * @file i2s-a2dp.ino
3
+ * @author Phil Schatzmann
4
+ * @brief see https://github.com/pschatzmann/arduino-audio-tools/blob/main/examples/i2s-a2dp/README.md
5
+ *
6
+ * @author Phil Schatzmann
7
+ * @copyright GPLv3
8
+ */
9
+
10
+
1
11
#include " Arduino.h"
2
12
#include " AudioTools.h"
3
13
4
14
using namespace audio_tools ;
5
15
6
- /* *
7
- * @brief We use a ADS1015 I2S microphone as input and send the data to A2DP
8
- * Unfortunatly the data type from the microphone (int32_t) does not match with the required data type by A2DP (int16_t),
9
- * so we need to convert.
10
- */
11
16
12
17
BluetoothA2DPSource a2dp_source;
13
18
I2S<int32_t > i2s;
Original file line number Diff line number Diff line change
1
+ /* *
2
+ * @file i2s-serial.ino
3
+ * @author Phil Schatzmann
4
+ * @brief see https://github.com/pschatzmann/arduino-audio-tools/blob/main/examples/i2s-serial/README.md
5
+ *
6
+ * @author Phil Schatzmann
7
+ * @copyright GPLv3
8
+ */
9
+
1
10
#include " Arduino.h"
2
11
#include " AudioTools.h"
3
12
#include " BluetoothA2DPSource.h"
Original file line number Diff line number Diff line change @@ -10,6 +10,8 @@ namespace audio_tools {
10
10
/* *
11
11
* @brief ESP8266Audio AudioOutput class which stores the data in a temporary buffer.
12
12
* The buffer can be consumed e.g. by a callback function by calling read();
13
+ * @author Phil Schatzmann
14
+ * @copyright GPLv3
13
15
*/
14
16
class AudioOutputWithCallback : public AudioOutput
15
17
{
You can’t perform that action at this time.
0 commit comments