Skip to content

miselaytes-anton/faust-echo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Faust echo

Simple echo effect using Faust on ESP32 board.

Set up

Follow this tutorial.

Build

  1. First lets convert FaustEcho.dsp to FaustEcho.cpp
./faust.sh
  1. Now we need a manual step. In FaustEcho.cpp we need to movefRec8 from mydsp class to the global scope, make it static and add EXT_RAM_ATTR to it, so that it becomes:
static float fRec8[262144] EXT_RAM_ATTR;

class mydsp : public dsp {
   // ...
}
  1. Flash the micro controller:
./flash

Links

Todo

  • possibly add a pot or use buttons to control volume

About

Simple echo effect using Faust on ESP32 board.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages