aboutsummaryrefslogtreecommitdiffhomepage
path: root/configs/flying-faders.lua
diff options
context:
space:
mode:
Diffstat (limited to 'configs/flying-faders.lua')
-rw-r--r--configs/flying-faders.lua10
1 files changed, 10 insertions, 0 deletions
diff --git a/configs/flying-faders.lua b/configs/flying-faders.lua
new file mode 100644
index 0000000..0b0faef
--- /dev/null
+++ b/configs/flying-faders.lua
@@ -0,0 +1,10 @@
+step = 0
+
+function wave()
+ for chan=1,24 do
+ output("wave" .. chan, (math.sin(math.rad((step + chan * 360 / 24) % 360)) + 1) / 2)
+ end
+ step = (step + 5) % 360
+end
+
+interval(wave, 100)