🎸 Cross-platform python interface for LT25 guitar amplifier
Project description
lt25.py
🎸 A cross-platform Python module for interacting with the LT25 amplifier made by a certain equine-named guitar manufacture that rhymes with "bender".
👋 Introduction
I made this module because I was disappointed by the lack of certain features in both my amp itself as well as the associated desktop app provided by its manufacturer. Failing to find solutions which used modern languages/technologies I could build upon (.NET doesnt count), I made my own package based on the reverse-engineering work others initiated.
⚙️ Specifications
This library requires Python 3.8+ to be installed on your system (due to demands of the protobuf 5 module). Additionally, the library only supports HID USB operations (not MIDI)
🚀 Quickstart
pip install lt25
[!IMPORTANT] On linux, hidapi relies on libusb:
sudo apt install libusb-1.0-0-dev libudev-dev pkg-config
💾 Usage
For full documentation of the LT25 class, refer to the wiki
Demonstration loop:
[!WARNING] On some linux distros,
sudo-mode is required for interacting with USB devices.
import time
import lt25
amp = lt25.LT25()
amp.connect()
amp.send_sync_begin()
amp.send_sync_end()
amp.set_preset(5)
amp.set_qa_slots([1,2])
amp.request_firmware_version()
for i in range(5):
amp.send_heartbeat()
print(amp.request_qa_slots())
time.sleep(1)
amp.disconnect()
🗺️ Roadmap
Compatibility with LtAmp protocol:
- Audio Status
- Audition Preset (status, start, exit)
- Clear/rename/shift/swap/save (to/as) preset
- Connection Status
- Current Preset (request/load)
- DSP Unit Parameter
- Firmware Version
- Heartbeat
- ⭐ LT4 Footswitch Mode
- Loopback
- Memory usage
- Processor Utilization
- QA Slots
- Sync (Modal Status)
- USB Gain
Other TODOs:
- Publish to Pypi
- Continuous Deployment
- LT25Async/Base Classes
- Unit Testing
- Other Amps
🛠️ Contributing
[!NOTE] If you need to contribute in a way which updates protocol classes, you can find the original .proto files in Brent Maxwell's repository. I unfortunately cannot include these files in this module due to copy-left licensing restrictions.
lt25.py is licensed under the permissive MIT license, which means that you may fork, modify, adapt, and redistribute with few restrictions. However, if you wish to contribute your changes back to the base module, please open a pull request. To report bugs, request features, or discuss the project, open an issue or discussion!
🙌 Acknowledgements
- Brent Maxwell (@brentmaxwell) and his LtAmp .NET libray: his published reverse engineering docs, schemas, proto files, etc. were instrumental in the creation of this Python module.
- Additionally, some of the goals of his work greatly inspired those of this project.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file lt25-0.1.1.tar.gz.
File metadata
- Download URL: lt25-0.1.1.tar.gz
- Upload date:
- Size: 22.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.32.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
23435420701a22e85dedb0df2c646c950456d20a9bd871f300b6c7fdafa8fe50
|
|
| MD5 |
5e8524bf05b3d15a9d446d74b5720c49
|
|
| BLAKE2b-256 |
c79571af1607fb1d784566134e6636de313a9f5c26e78561ecd6908a5d66c175
|
File details
Details for the file lt25-0.1.1-py3-none-any.whl.
File metadata
- Download URL: lt25-0.1.1-py3-none-any.whl
- Upload date:
- Size: 4.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.32.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
56fdc94737fd4555f778802fd747e466084975a86bf1558afd71e5c1258ced27
|
|
| MD5 |
57cd2ed672b42aed63d6fc83d5c87910
|
|
| BLAKE2b-256 |
315737ba010852c7af2fc9e45d777599152f7001650587660eba12b151e04ea8
|