https://github.com/stm32duino/python-wave-serial-encoder
Python application to save a wave audio track through serial port
https://github.com/stm32duino/python-wave-serial-encoder
Last synced: 5 months ago
JSON representation
Python application to save a wave audio track through serial port
- Host: GitHub
- URL: https://github.com/stm32duino/python-wave-serial-encoder
- Owner: stm32duino
- Created: 2020-12-16T11:49:21.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2020-12-17T15:29:26.000Z (about 5 years ago)
- Last Synced: 2023-02-26T16:01:20.804Z (almost 3 years ago)
- Language: Python
- Size: 38.1 KB
- Stars: 2
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Python Wave Serial Encoder
## Manual
1. Use the dropdown menu to select the port and then click on *Connect*.
2. Choose the path where the file will be saved by using the *Save* button.
3. Use *Start* and *Stop* button to respectively start and stop the recording.
**Please note: to record more than one file, change the path else the old file will be overridden.**
In case the dropdown menu does not detect the port, use the button *Refresh* to update the Serial Port.
## Installation
The script has some python packages dependencies. Install them by running:
On Window:
Tkinter is included in the Python standard library from version 3.1
python3 -m pip install --upgrade pip
python3 -m pip install --upgrade -r requirements.txt
On Linux:
sudo apt-get install python-tk python3-tk tk-dev python3-pip
python3 -m pip install --upgrade pip
python3 -m pip install --upgrade -r requirements.txt