my faust code. the faust code generates a "teensy" library "Volume.h" and "Volume.cpp" from https://faustide.grame.fr/
import("stdfaust.lib");
gain = vslider("[1]", 0, -70, +4, 0.1) : ba.db2linear : si.smoo;
process = *(gain);
then my teensy code here (volume.ino) will pass through audio unless I comment out volume.setParamValue("gain",0.5);
!