Browse Source

Small changes

master
Pete Shadbolt 9 years ago
parent
commit
234b9ad961
2 changed files with 8 additions and 12 deletions
  1. +1
    -1
      main.py
  2. +7
    -11
      scratch.ck

+ 1
- 1
main.py View File

@@ -45,7 +45,7 @@ class InputPanel(wx.Panel):
wx.Panel.__init__(self, parent)
sizer = wx.BoxSizer(wx.HORIZONTAL)

label = wx.StaticText(self, label="Line In:")
label = wx.StaticText(self, label="Line in:")
font = label.GetFont(); font.SetWeight(wx.BOLD); label.SetFont(font)
sizer.Add(label, 0, wx.TOP|wx.BOTTOM|wx.RIGHT, 5)



+ 7
- 11
scratch.ck View File

@@ -1,16 +1,12 @@
// Effects chain
Gain mixer => dac; // Main mixer
adc => Gain adcThru => mixer; // Monitor the input
adc => Gain feedback => DelayL delay => feedback; // Delay line
delay => Gain delaySend => mixer; // Connect delay to mixer
adc => LiSa s => dac;
1::second => s.duration;
0::second => s.recPos;
1::second => s.playPos;
s.loop(1);
s.loopRec(1);
s.play(1);

// Delay parameters
2::second => delay.max;
1::second => delay.delay;
.98 => feedback.gain;
1 => delay.gain;
.5 => delaySend.gain;
.5 => adcThru.gain;

while (true){
1::second => now;


Loading…
Cancel
Save