Skip to content

Commit 261772d

Browse files
committed
Rename sound to audio
1 parent 5a7d781 commit 261772d

38 files changed

+94
-98
lines changed

Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ DOXYFILE_ENCODING = UTF-8
3333
# title of most generated pages and in a few other places.
3434
# The default value is: My Project.
3535

36-
PROJECT_NAME = "arduino-sound-tools"
36+
PROJECT_NAME = "arduino-audio-tools"
3737

3838
# The PROJECT_NUMBER tag can be used to enter a project or revision number. This
3939
# could be handy for archiving the generated documentation or if some version

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ Some basic C++ classes that can be used for Audio Processing privided as Arduino
88
- Converters
99
- Musical Notes (with Frequencies of notes)
1010
- 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]
1313
- A Wav Encoder and Decoder
1414

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.
1616
We also provide plenty of examples that demonstrate how to implement the different scenarios.
1717

1818
## Optional Libraries
@@ -24,7 +24,7 @@ We also provide plenty of examples that demonstrate how to implement the differe
2424

2525
## Examples
2626

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)
2828

2929

3030
## Installation
@@ -33,13 +33,13 @@ You can download the library as zip and call include Library -> zip library. Or
3333

3434
```
3535
cd ~/Documents/Arduino/libraries
36-
git clone pschatzmann/arduino-sound-tools.git
36+
git clone pschatzmann/arduino-audio-tools.git
3737
3838
```
3939

4040
## Documentation
4141

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/)
4343

4444
## Project Status
4545

examples/adc-a2dp/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
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.
44

5-
![MCP6022](https://pschatzmann.github.io/arduino-sound-tools/resources/mcp6022.jpeg)
6-
![MCP6022](https://pschatzmann.github.io/arduino-sound-tools/resources/mcp6022-1.jpeg)
5+
![MCP6022](https://pschatzmann.github.io/arduino-audio-tools/resources/mcp6022.jpeg)
6+
![MCP6022](https://pschatzmann.github.io/arduino-audio-tools/resources/mcp6022-1.jpeg)
77

88
The MCP6022 is a anlog microphone which operates at 3.3 V
99
We sample the sound signal with the help of the ESP32 I2S ADC input functionality.

examples/adc-a2dp/adc-a2dp.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#include "Arduino.h"
22
#include "BluetoothA2DPSource.h"
3-
#include "SoundTools.h"
3+
#include "AudioTools.h"
44

5-
using namespace sound_tools;
5+
using namespace audio_tools;
66

77
/**
88
* @brief We use a mcp6022 analog microphone as input and send the data to A2DP

examples/adc-serial/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
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.
44

5-
![MCP6022](https://pschatzmann.github.io/arduino-sound-tools/resources/mcp6022.jpeg)
6-
![MCP6022](https://pschatzmann.github.io/arduino-sound-tools/resources/mcp6022-1.jpeg)
5+
![MCP6022](https://pschatzmann.github.io/arduino-audio-tools/resources/mcp6022.jpeg)
6+
![MCP6022](https://pschatzmann.github.io/arduino-audio-tools/resources/mcp6022-1.jpeg)
77

88
The MCP6022 is a anlog microphone which operates at 3.3 V
99
We sample the sound signal with the help of the ESP32 I2S ADC input functionality.
@@ -19,7 +19,7 @@ We sample the sound signal with the help of the ESP32 I2S ADC input functionalit
1919

2020
## Serial Plotter
2121

22-
![Serial](https://pschatzmann.github.io/arduino-sound-tools/resources/serial_plotter.png)
22+
![Serial](https://pschatzmann.github.io/arduino-audio-tools/resources/serial_plotter.png)
2323

2424

2525

examples/adc-serial/adc-serial.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#include "Arduino.h"
22
#include "BluetoothA2DPSource.h"
3-
#include "SoundTools.h"
3+
#include "AudioTools.h"
44

5-
using namespace sound_tools;
5+
using namespace audio_tools;
66

77
/**
88
* @brief We use a mcp6022 analog microphone on GPIO34 and write it to Serial

examples/file_mp3-a2dp/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33

44
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.
55

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...

examples/file_mp3-a2dp/file_mp3-a2dp.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
#include "AudioGeneratorMP3.h"
55
#include "AudioOutputWithCallback.h"
66
#include "BluetoothA2DPSource.h"
7-
#include "SoundTools.h"
7+
#include "AudioTools.h"
88

9-
using namespace sound_tools;
9+
using namespace audio_tools;
1010

1111
const int sd_ss_pin = 5;
1212
const char* fileName = "/audio.mp3";

examples/file_raw-a2dp/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
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.
44

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).
66

7-
![sd](https://pschatzmann.github.io/arduino-sound-tools/resources/sd-module.jpeg)
7+
![sd](https://pschatzmann.github.io/arduino-audio-tools/resources/sd-module.jpeg)
88

99
The SD module is connected with the help of the SPI bus
1010

examples/file_raw-serial/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
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.
44

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).
66

7-
![sd](https://pschatzmann.github.io/arduino-sound-tools/resources/sd-module.jpeg)
7+
![sd](https://pschatzmann.github.io/arduino-audio-tools/resources/sd-module.jpeg)
88

99
The SD module is connected with the help of the SPI bus
1010

0 commit comments

Comments
 (0)