Support

If you have a problem or need to report a bug please email : support@dsprobotics.com

There are 3 sections to this support area:

DOWNLOADS: access to product manuals, support files and drivers

HELP & INFORMATION: tutorials and example files for learning or finding pre-made modules for your projects

USER FORUMS: meet with other users and exchange ideas, you can also get help and assistance here

NEW REGISTRATIONS - please contact us if you wish to register on the forum

Users are reminded of the forum rules they sign up to which prohibits any activity that violates any laws including posting material covered by copyright

BACKWARDS / FORWARDS - CROPPING SEQUENCER

For general discussion related FlowStone

BACKWARDS / FORWARDS - CROPPING SEQUENCER

Postby Casper78oo » Sun May 19, 2024 11:47 pm

BACKWARDS / FORWARDS - CROPPING SEQUENCER


this 32 step sequencer ( ATTACHED) can be adjusted to range from 1 - 32 steps.

1-1 steps
1-2 steps
1-3 steps
1-4 steps
1-5 steps
1-6 steps
1-32 STEPS

and so on.......

essientialy CROPPING THE LENGTH FROM THE END

I want to make this a BACKWARDS & FORWARDS CROPPING SEQUENCER SO I CAN ALSO CROP THE SEQUENCE FROM THE START
THIS WOULD ALLOW ME TO SELECT SPECIFIC REGIONS OF THE SEQUENCE
BY REMOVING STEPS FROM THE START (((NOT JUST THE END))


1-32 steps
2-32 steps
3-32 steps
4-32 steps
30-32 STEPS

AND SO ON....



IN SIMPLE, I WANT TO BE ABLE TO CUT OFF PARTS OF THE SEQUENCE FROM THE START NOT JUST THE END

CURRENTLY THIS SEQUENCER ONLY ALLOWS ME TO CUT OFF PARTS OF THE SEQUENCE FROM THE END


I WANT TO MAKE THIS A BACKWARDS & FORWARDS CROPPING SEQUENCER!!!!!!!!!!!!!
( I CANNOT FIGURE OUT HOW TO DO THIS )
I AM LOOKING FOR HELP !!!!!!!!!!!

- CASPER
Attachments
32 step seq.fsm
32 step sequencer
(545.43 KiB) Downloaded 35 times
Casper78oo
 
Posts: 7
Joined: Tue Oct 31, 2023 10:31 am

Re: BACKWARDS / FORWARDS - CROPPING SEQUENCER

Postby tulamide » Mon May 20, 2024 7:59 am

Try double buffering the sources array:

Start by exposing another knob for start of sequence. Make both values, start and length dependend by checking the other each time, one is changed.

start (0-based) is changed:
maxlen = 31 - start
len = [len, maxlen].min

length (0-based) is changed:
maxstart = 31 - len
start = [start, maxstart].min

In Ruby, always make a copy from sources (to keep its defaults) and instead work on a buffer copy by using:
buffer = sources[start, len]
"There lies the dog buried" (German saying translated literally)
tulamide
 
Posts: 2700
Joined: Sat Jun 21, 2014 2:48 pm
Location: Germany

Re: BACKWARDS / FORWARDS - CROPPING SEQUENCER

Postby Casper78oo » Mon May 20, 2024 11:37 pm

Tulamide - would you mind fixing the schematic I posted so I can see what you’re talking about. I can’t really figure it out. If you wouldn’t mind modifying my schematic and reposting it so I can take a look. - Casper
Casper78oo
 
Posts: 7
Joined: Tue Oct 31, 2023 10:31 am

Re: BACKWARDS / FORWARDS - CROPPING SEQUENCER

Postby tulamide » Tue May 21, 2024 9:43 am

I'm so sorry, but I don't have the time for that. But maybe someone else will take on the task? <Looks around the community>
"There lies the dog buried" (German saying translated literally)
tulamide
 
Posts: 2700
Joined: Sat Jun 21, 2014 2:48 pm
Location: Germany


Return to General

Who is online

Users browsing this forum: Google [Bot] and 16 guests

cron