https://github.com/fxwiegand/terrarium-stand
A template repository for creating effects with the terrarium from PedalPCB.
https://github.com/fxwiegand/terrarium-stand
daisy diy electro-smith guitar pedal pedalpcb template
Last synced: 2 months ago
JSON representation
A template repository for creating effects with the terrarium from PedalPCB.
- Host: GitHub
- URL: https://github.com/fxwiegand/terrarium-stand
- Owner: fxwiegand
- License: mit
- Created: 2021-02-20T10:27:15.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-04-30T15:53:51.000Z (about 2 years ago)
- Last Synced: 2025-03-18T15:16:11.525Z (2 months ago)
- Topics: daisy, diy, electro-smith, guitar, pedal, pedalpcb, template
- Language: C++
- Homepage:
- Size: 15.6 KB
- Stars: 22
- Watchers: 1
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# terrarium-stand
This repository works as a template for new pedals created for the [terrarium](https://www.pedalpcb.com/product/pcb351/) from [PedalPCB](https://www.pedalpcb.com).
To create a new pedal, simply create a new git repository using this template and start out with the basic structure in the `your_pedal` directory. Change the name of the directory to whatever you like but make sure you also change `TARGET = your_pedal` in `your_pedal/Makefile`. If you want use the workflow file for GitHub Actions, make sure to also update the `PEDAL_NAME` variable in the workflow file. If you don't want to use GitHub Action you can simply delete the workflow file.## Getting started
Build the daisy libraries with:
```
make -C DaisySP
make -C libDaisy
```Then flash your terrarium with:
```
cd your_pedal
# using USB (after entering bootloader mode)
make program-dfu
# using JTAG/SWD adaptor (like STLink)
make program
```Note: The template pedal only turns the LED of the terrarium on and off and does no audio processing at all.
For an example with audio processing generated from this template you can checkout a [reverb](https://github.com/fxwiegand/terrarium-reverb).