https://github.com/cektor/esrom
This application allows you to convert between text and Morse code, and also allows you to listen to Morse code by voice. It has a Graphical user interface and is cross-platform.
https://github.com/cektor/esrom
amateur-radio ham-radio morse morse-code
Last synced: 6 months ago
JSON representation
This application allows you to convert between text and Morse code, and also allows you to listen to Morse code by voice. It has a Graphical user interface and is cross-platform.
- Host: GitHub
- URL: https://github.com/cektor/esrom
- Owner: cektor
- License: gpl-3.0
- Created: 2024-11-30T16:31:50.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-12-30T17:08:21.000Z (9 months ago)
- Last Synced: 2025-02-13T08:52:44.418Z (8 months ago)
- Topics: amateur-radio, ham-radio, morse, morse-code
- Language: Python
- Homepage: https://algyazilim.com
- Size: 13.3 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ESROM
This application allows you to convert between text and Morse code, and also allows you to listen to Morse code by voice. It has a graphical user interface and is cross-platform..ESROM Logo
![]()
----------------------
# Linux Screenshot
# Windows Screenshot
--------------------
Install Git Clone and Python3Github Package Must Be Installed On Your Device.
git
```bash
sudo apt install git -y
```Python3
```bash
sudo apt install python3 -y```
pip
```bash
sudo apt install python3-pip```
# Required Libraries
PyQt5
```bash
pip install PyQt5
```
PyQt5-sip
```bash
pip install PyQt5 PyQt5-sip
```PyQt5-tools
```bash
pip install PyQt5-tools
```Required Libraries for Debian/Ubuntu
```bash
sudo apt-get install python3-pyqt5
sudo apt-get install qttools5-dev-tools
```
pygame
```bash
pip install pygame
```numpy
```bash
pip install numpy```
----------------------------------
# Installation
Install ESROM```bash
sudo git clone https://github.com/cektor/ESROM.git
```
```bash
cd ESROM
``````bash
python3 esrom.py```
# To compile
NOTE: For Compilation Process pyinstaller must be installed. To Install If Not Installed.
pip install pyinstaller
Linux Terminal
```bash
pytohn3 -m pyinstaller --onefile --windowed esrom.py
```Windows VSCode Terminal
```bash
pyinstaller --onefile --noconsole esrom.py
```MacOS VSCode Terminal
```bash
pyinstaller --onefile --noconsole esrom.py
```# To install directly on Windows or Linux
Linux (based debian) Terminal: Linux (debian based distributions) To install directly from Terminal.
```bash
wget -O Setup_Linux64.deb https://github.com/cektor/ESROM/releases/download/1.00/Setup_Linux64.deb && sudo apt install ./Setup_Linux64.deb && sudo apt-get install -f -y
```Windows Installer CMD (PowerShell): To Install from Windows CMD with Direct Connection.
```bash
powershell -Command "Invoke-WebRequest -Uri 'https://github.com/cektor/ESROM/releases/download/1.00/Setup_Win64.exe' -OutFile 'Setup_Win64.exe'" && start /wait Setup_Win64.exe
```Release Page: https://github.com/cektor/ESROM/releases/tag/1.00
----------------------------------