Source code for rv.modules.input

from enum import Enum

from rv.controller import Controller
from rv.modules import Behavior as B, Module


[docs]class Input(Module): name = mtype = 'Input' mgroup = 'Synth' behaviors = {B.sends_audio}
[docs] class Channels(Enum): mono = 0 stereo = 1
volume = Controller((0, 1024), 256) channels = Controller(Channels, Channels.mono)