aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.c
diff options
context:
space:
mode:
authorBad Diode <bd@badd10de.dev>2023-07-22 08:32:04 +0200
committerBad Diode <bd@badd10de.dev>2023-07-22 08:32:04 +0200
commitbac16fa2662f61cfa3b56111649685b4eb397442 (patch)
tree18f3fcc380b8dd662377408ef76d20e8acecbdcd /src/main.c
parent24f49419af67365907c1f072cb159719ff93fdbd (diff)
downloadstepper-bac16fa2662f61cfa3b56111649685b4eb397442.tar.gz
stepper-bac16fa2662f61cfa3b56111649685b4eb397442.zip
Fix default parameters for channel params
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/main.c b/src/main.c
index 09f0465..ffe60e4 100644
--- a/src/main.c
+++ b/src/main.c
@@ -12,27 +12,27 @@ WITH REGARD TO THIS SOFTWARE.
12// TODO: A list of features I would like to get to implement in the near future. 12// TODO: A list of features I would like to get to implement in the near future.
13// 13//
14// UI tweaks. 14// UI tweaks.
15// - Add custom user themes
16// - Animations for cursor movement/current step highlight. (A fade out maybe?)
17// - Add panning support.
18// + Add new UI for the parameter pages 15// + Add new UI for the parameter pages
19// + Change cursor drawing for new parameter pages 16// + Change cursor drawing for new parameter pages
20// - Change cursor behaviour for new parameter pages 17// + Change cursor behaviour for new parameter pages
21// - Allow prob control (% based or 1:2, etc.)
22// - Display notification when editing a parameter with the highest priority 18// - Display notification when editing a parameter with the highest priority
19// - Add panning support.
20// - Allow prob control (% based or 1:2, etc.)
21// - Add custom user themes
22// - Animations for cursor movement/current step highlight. (A fade out maybe?)
23// 23//
24// Quality of life improvements. 24// Quality of life improvements.
25// + Make the channel parameters initialize to default
25// - When not on play mode, adjusting a note or a parameter triggers the sound. 26// - When not on play mode, adjusting a note or a parameter triggers the sound.
26// This could get annoying, so maybe it should be a configuration option to 27// This could get annoying, so maybe it should be a configuration option to
27// enable it? 28// enable it?
28// - Undo/Redo. 29// - Undo/Redo.
29// - Make the channel parameters initialize to default
30// 30//
31// Advanced 31// Advanced
32// - Per trig note probability.
32// - Add tap tempo for BPM. 33// - Add tap tempo for BPM.
33// - Allow "marking" several trigs to be able to copy/paste them and/or adjust 34// - Allow "marking" several trigs to be able to copy/paste them and/or adjust
34// their parameters. 35// their parameters.
35// - Per trig note probability.
36// - Add an envelope to ch3, would need to work with a timer in order to make 36// - Add an envelope to ch3, would need to work with a timer in order to make
37// it work I think. 37// it work I think.
38// - Sync via MIDI via arduinoboy or something similar. 38// - Sync via MIDI via arduinoboy or something similar.