You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,11 +8,11 @@ Some basic C++ classes that can be used for Audio Processing privided as Arduino
8
8
- Converters
9
9
- Musical Notes (with Frequencies of notes)
10
10
- SineWaveGenerator (to generate some sine tone)
11
-
- NBuffer (Multi buffer for writing and reading of (sound) data)
12
-
- TimerAlarmRepeating (e.g. for sampling sound data using exact times) [ESP32 only]
11
+
- NBuffer (Multi buffer for writing and reading of (audio) data)
12
+
- TimerAlarmRepeating (e.g. for sampling audio data using exact times) [ESP32 only]
13
13
- A Wav Encoder and Decoder
14
14
15
-
This functionality provides the glue which makes different sound processing components and libraries work together.
15
+
This functionality provides the glue which makes different audio processing components and libraries work together.
16
16
We also provide plenty of examples that demonstrate how to implement the different scenarios.
17
17
18
18
## Optional Libraries
@@ -24,7 +24,7 @@ We also provide plenty of examples that demonstrate how to implement the differe
24
24
25
25
## Examples
26
26
27
-
All examples can be found in the [examples folder](https://github.com/pschatzmann/arduino-sound-tools/tree/main/examples)
27
+
All examples can be found in the [examples folder](https://github.com/pschatzmann/arduino-audio-tools/tree/main/examples)
28
28
29
29
30
30
## Installation
@@ -33,13 +33,13 @@ You can download the library as zip and call include Library -> zip library. Or
33
33
34
34
```
35
35
cd ~/Documents/Arduino/libraries
36
-
git clone pschatzmann/arduino-sound-tools.git
36
+
git clone pschatzmann/arduino-audio-tools.git
37
37
38
38
```
39
39
40
40
## Documentation
41
41
42
-
Here is the generated [Class documentation](https://pschatzmann.github.io/arduino-sound-tools/html/annotated.html). You might find further information in [one of my blogs](https://www.pschatzmann.ch/home/category/machine-sound/)
42
+
Here is the generated [Class documentation](https://pschatzmann.github.io/arduino-audio-tools/html/annotated.html). You might find further information in [one of my blogs](https://www.pschatzmann.ch/home/category/machine-sound/)
Copy file name to clipboardExpand all lines: examples/adc-a2dp/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,8 +2,8 @@
2
2
3
3
We can read an analog signal from a microphone and and send it to a Bluetooth A2DP device. To test the functionality I am using a MCP6022 microphone module.
Copy file name to clipboardExpand all lines: examples/adc-serial/README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,8 +2,8 @@
2
2
3
3
We can read an analog signal from a microphone and and write it out to Serial so that we can check the result in the __Arduino Serial Plotter__. To test the functionality I am using a MCP6022 microphone module.
Copy file name to clipboardExpand all lines: examples/file_mp3-a2dp/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,4 +3,4 @@
3
3
4
4
The processing of files with the help of the [ESP8266Audio](https://github.com/earlephilhower/ESP8266Audio) is a little bit more involved. Howver it allows to process different file types from different sources. Please consult the project for further details.
5
5
6
-
In this Sketch we use the ESP8266Audio library to read the [audio.mp3](https://pschatzmann.github.io/arduino-sound-tools/resources/audio.mp3) file from a SD drive. The output is pushed into a temporary buffer. The A2DP Callback then just consumes this buffered data...
6
+
In this Sketch we use the ESP8266Audio library to read the [audio.mp3](https://pschatzmann.github.io/arduino-audio-tools/resources/audio.mp3) file from a SD drive. The output is pushed into a temporary buffer. The A2DP Callback then just consumes this buffered data...
Copy file name to clipboardExpand all lines: examples/file_raw-a2dp/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,9 +2,9 @@
2
2
3
3
We are reading a raw audio file from the SD card and send it to a Bluetooth A2DP device. The audio file must be available using 16 bit integers with 2 channels.
4
4
5
-
[Audacity](https://www.audacityteam.org/) might help you out here: export with the file name audio.raw as RAW signed 16 bit PCM and copy it to the SD card. In my example I was using the file [audio.raw](https://pschatzmann.github.io/arduino-sound-tools/resources/audio.raw).
5
+
[Audacity](https://www.audacityteam.org/) might help you out here: export with the file name audio.raw as RAW signed 16 bit PCM and copy it to the SD card. In my example I was using the file [audio.raw](https://pschatzmann.github.io/arduino-audio-tools/resources/audio.raw).
Copy file name to clipboardExpand all lines: examples/file_raw-serial/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,9 +2,9 @@
2
2
3
3
We are reading a raw audio file from the SD card and send it to a Bluetooth A2DP device. The audio file must be available using 16 bit integers with 2 channels.
4
4
5
-
[Audacity](https://www.audacityteam.org/) might help you out here: export with the file name audio.raw as RAW signed 16 bit PCM and copy it to the SD card. In my example I was using the file [audio.raw](https://pschatzmann.github.io/arduino-sound-tools/resources/audio.raw).
5
+
[Audacity](https://www.audacityteam.org/) might help you out here: export with the file name audio.raw as RAW signed 16 bit PCM and copy it to the SD card. In my example I was using the file [audio.raw](https://pschatzmann.github.io/arduino-audio-tools/resources/audio.raw).
0 commit comments