https://github.com/yeeking/pi-fx
Really hacky fx unit for pi/ hifiberry/ wio terminal setup
https://github.com/yeeking/pi-fx
Last synced: about 1 month ago
JSON representation
Really hacky fx unit for pi/ hifiberry/ wio terminal setup
- Host: GitHub
- URL: https://github.com/yeeking/pi-fx
- Owner: yeeking
- License: mit
- Created: 2023-09-16T18:16:39.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-16T19:30:23.000Z (over 1 year ago)
- Last Synced: 2023-09-17T04:37:22.283Z (over 1 year ago)
- Language: C++
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pi-fx
Really hacky fx unit for pi/ hifiberry/ wio terminal setup```
cmake -B build .
cmake --build build --config Release
./build/pi-fx
# then run jackd on the hifiberry
jackd -d alsa -d hw:3
# then run sclang
sclang
s.boot
```Then the ui just writes to control buses 1..n with OSC c_set messages so you can
make a synth like this:```
SynthDef("fm", {
var f, c, i;
f = In.kr(1);
i = In.kr(2);
c = PMOsc.ar([f, f], [f/2, f/2], i/50);
Out.ar(0, c);
}).add;
Synth("fm");
```
and control it with the powermate via the UI.