korginc / logue-sdk

This repository contains all the files and tools needed to build custom oscillators and effects for the prologue synthesizer.
BSD 3-Clause "New" or "Revised" License
835 stars 306 forks source link

Demos for the effects? #38

Closed schollz closed 4 years ago

schollz commented 4 years ago

This is a really amazing resource. The NTS-1 is the kind of synthesizer I've always dreamed of, being able to program with a really well developed framework is fantastic.

I found all the instructions useful for cloning the repo, installing the toolchain, etc. I found that the demo for the waves is absolutely crucial for me to get going on programming difference oscillators.

Is there any demo for the effects? I'm interested in making a delay. The template folder for the effect is a crucial starting point, but the included code is still a little too bare bones for me to tinker with.

Please let me know if this repo has any effects demos I missed, or if anyone else out there has effects demos that they could share! I did find @dukesrg's fork with cool effects but it looks as if its deviated quite a bit from the original template in this repo.

dukesrg commented 4 years ago

@schollz

  1. Read throughfully https://github.com/korginc/logue-sdk/tree/master/platform/nutekt-digital
  2. Have a look at https://github.com/korginc/logue-sdk/blob/master/platform/nutekt-digital/delfx/tests/src

All you have to do is implement several API fuctions, just don't bother with the rest of the project template! One of the reason of my logue-sdk fork is to reduce the project footprint and move away the stock code and hardware abstraction which noone ever shoud touch.

schollz commented 4 years ago

@dukesrg Thanks so much for the quick response. I missed the code in those tests somehow, I think I'll be able to manage with that!