diff --git a/oregano/Tutorial.md b/oregano/Tutorial.md index c075d74..4620328 100644 --- a/oregano/Tutorial.md +++ b/oregano/Tutorial.md @@ -51,7 +51,7 @@ You can either use a preset instrument or define your own instrument ;; create a custom instrument ;; can use oscilators and envelopes - (define my-instrument (make-instrument ...) + (define my-instrument (make-instrument ... TODO)) ;; add envelope to instrument @@ -65,6 +65,8 @@ Now that we have an instrument, we can use it to play notes on a specific track. ;; to stop playing (note-off my-piano C#3 track2) + ;; TODO - find a way to turn off a note, or make a note play for a specific time + TODO: - use an instrument to play a note on a track.