[!IMPORTANT] The Twist, whose components are housed by this repository, is still in alpha/prototype stages. Expect frequent breaking changes (but also enthusiastic support) until the version number reaches 1.0.0
The Bender Twist is a free, portable platform which augments the functionality of the LT-series amps made by a guitar company that rhymes with "bender".
https://github.com/user-attachments/assets/ab2fa6d3-ed6a-48c6-a2fd-b2e2458a9679
| Required Materials | |
|---|---|
|
|
| Instructions | Setup Diagram |
|
![]() |
|
|
|
|
|
|
This repository contains almost everything related to The Twist, as well asthe various add-ons that may be developed in the future.
~/the-twist
āāā .github # automated builds & CI
āāā 3d # 3d-print files for thetwist's case options (soon)
āāā addons # battery support, speaker, screens (soon)
āāā backend # api server controlling amp connectivity
ā āāā ltamp # vendored ltamp.py package
ā āāā app.py # fastapi entry point
ā āāā default.nix
āāā docs # documentation markdown
āāā frontend # svelte control panel interface
ā āāā public # assets
ā āāā src
ā ā āāā components # reusable ui parts
ā ā āāā lib # utils and lil things
ā ā āāā pages # SPA routes
ā ā āāā stores # event/state management
ā āāā default.nix
āāā portal # wifi/WAP configuration server
āāā site # marketing website
āāā flake.nix
āāā flake.lock
To start the backend manually, run:
cd backend
uvicorn app:app --host 0.0.0.0 --port 80 --reload
To build new changes to the Svelte frontend, run. Unfortunately, due to no amp simulator being built for LtAmp.py (that maintainer should really get on that!!), you may have to build every time you make changes. Sorry :(
cd frontend
npm run build
To build the SD installer file, please run the following:
nix build \
--system aarch64-linux \
--max-jobs 0 \
--builders "ssh://eu.nixbuild.net aarch64-linux - 100 1 big-parallel,benchmark" \
.#installerImages.rpi02
sudo dd if=/dev/zero of=/dev/sda bs=8192
zstd -dc result/sd-image/nixos-image-rpi02-uboot.img.zst | sudo dd of=/dev/sda bs=4M conv=fsync status=progress
sudo umount /dev/sda*; sudo eject /dev/sda
Default SSH Credentials
Planned features, known bugs, and the overall project roadmap are coorinated using a combination of GitHub's Issues and Projects. The project tab is where more broad, long-term, and important work is tracked, while day-to-day development progress is reserved for Issues and Pull Requests.