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
Questions / Things of green
12 posts
• Page 1 of 2 • 1, 2
Questions / Things of green
I crack myself up
Here's a kind of a unnecessarily elaborate latch switch logic, using counters. But can be used with simplest trigger buttons. Doesn't cause loopback so state can be set directly. Might be useful to someone even if it's a bit funny...
Edit:
LOL have to make a proper one, since I have to doubleclick the changed knob twice...
Here's a kind of a unnecessarily elaborate latch switch logic, using counters. But can be used with simplest trigger buttons. Doesn't cause loopback so state can be set directly. Might be useful to someone even if it's a bit funny...
Edit:
LOL have to make a proper one, since I have to doubleclick the changed knob twice...
- Attachments
-
- Spaghetti_green_latch_logic.fsm
- (1.03 KiB) Downloaded 2225 times
Last edited by R&R on Sat Nov 04, 2023 6:55 pm, edited 3 times in total.
My beginner synth at KVR: https://www.kvraudio.com/product/saguaro-one-by-saguaro-one
- R&R
- Posts: 468
- Joined: Fri Jul 15, 2022 2:28 pm
Re: Question about green
And with that...
Here's a question for the real coders:
This will stop sending trigger halfway of a knob.
I block triggers this way when I use like... log10 and some "power" operations afterwards, that aren't needed for half knob turn... this seems justified.
But how much green does one really need afterwards to justify this, and the constant overhead of running it?
Log, power, or a whole bunch of divisions maybe?
Here's a question for the real coders:
This will stop sending trigger halfway of a knob.
I block triggers this way when I use like... log10 and some "power" operations afterwards, that aren't needed for half knob turn... this seems justified.
But how much green does one really need afterwards to justify this, and the constant overhead of running it?
Log, power, or a whole bunch of divisions maybe?
My beginner synth at KVR: https://www.kvraudio.com/product/saguaro-one-by-saguaro-one
- R&R
- Posts: 468
- Joined: Fri Jul 15, 2022 2:28 pm
Re: Question about green
Aaaaaw...
The capitulation version simply using the buttons Ruby box to store value/state as usual instead.
Anyone more clever than me (setting the bar real low here people ) know how to do this latch without storing button states in Ruby box, and yet allowing for loopback?
The capitulation version simply using the buttons Ruby box to store value/state as usual instead.
Anyone more clever than me (setting the bar real low here people ) know how to do this latch without storing button states in Ruby box, and yet allowing for loopback?
- Attachments
-
- Ruby_Green_latch_logic.fsm
- (869 Bytes) Downloaded 2131 times
My beginner synth at KVR: https://www.kvraudio.com/product/saguaro-one-by-saguaro-one
- R&R
- Posts: 468
- Joined: Fri Jul 15, 2022 2:28 pm
Re: Question about green
Hmmm...
The Alpha thinks this is a problem, but old FS does not...
So the logic would be that update to the list cases a trigger in the Dropdown prim outputs. But this isn't an issue with old FS?
The Alpha thinks this is a problem, but old FS does not...
So the logic would be that update to the list cases a trigger in the Dropdown prim outputs. But this isn't an issue with old FS?
My beginner synth at KVR: https://www.kvraudio.com/product/saguaro-one-by-saguaro-one
- R&R
- Posts: 468
- Joined: Fri Jul 15, 2022 2:28 pm
Re: Question about green
R&R wrote:The Alpha thinks this is a problem, but old FS does not...
Easily fixed with a S&H... But clearly a difference between FS4 and old FS.
My beginner synth at KVR: https://www.kvraudio.com/product/saguaro-one-by-saguaro-one
- R&R
- Posts: 468
- Joined: Fri Jul 15, 2022 2:28 pm
Re: Questions / Things of green
Guessing this is the only easy way of getting last played (midi received) note's velocity in green?
- Attachments
-
- Split_velocity.fsm
- (10.44 KiB) Downloaded 1967 times
My beginner synth at KVR: https://www.kvraudio.com/product/saguaro-one-by-saguaro-one
- R&R
- Posts: 468
- Joined: Fri Jul 15, 2022 2:28 pm
Re: Questions / Things of green
Here is an alternative (FS User Guide p.219f):
(Note: To avoid confusion: The MIDI message displayed in the lower Ruby panel (Quick Watch) is not a "note on" but a "note off" message, hence the different velocities.
Note On: 93 (green output)
Note Off: 19 (lower Ruby panel)
I could not manage to sustain the note while taking the screenshot. )
(Note: To avoid confusion: The MIDI message displayed in the lower Ruby panel (Quick Watch) is not a "note on" but a "note off" message, hence the different velocities.
Note On: 93 (green output)
Note Off: 19 (lower Ruby panel)
I could not manage to sustain the note while taking the screenshot. )
-
martinvicanek - Posts: 1328
- Joined: Sat Jun 22, 2013 8:28 pm
Re: Questions / Things of green
martinvicanek wrote:Here is an alternative (FS User Guide p.219f):
That's definately more neat, code-wise...
Wonder if Maik has hidden any treats in the Voice-type stream, thats not available... or if it's just not implemented at all under the hood
Hmmm, along those lines... some poly stream values that could be passed along each stream would have been practical. Maybe i'm just unaware if there already is such a thing in FS.
Might have been to costly on the CPU perhaps...
My beginner synth at KVR: https://www.kvraudio.com/product/saguaro-one-by-saguaro-one
- R&R
- Posts: 468
- Joined: Fri Jul 15, 2022 2:28 pm
Re: Questions / Things of green
R&R wrote:Hmmm, along those lines... some poly stream values that could be passed along each stream would have been practical. Maybe i'm just unaware if there already is such a thing in FS.
Might have been to costly on the CPU perhaps...
Not a green question. Breaking my own topic
I'm so slow
Could just sacrifice resources by using more Poly's and filter out by Id, or perhaps by any other arbitrary value I guess...?
Anyone used an "early in schematic bus creation" type of scheme in elaborate more global way in any of your FS plugins?
My beginner synth at KVR: https://www.kvraudio.com/product/saguaro-one-by-saguaro-one
- R&R
- Posts: 468
- Joined: Fri Jul 15, 2022 2:28 pm
Re: Questions / Things of green
Just a simple interval indicator for my synths P3C knob later on.
Trivial and has surely been done a million times... probably just as many times better
Unnecessary amount of greens perhaps. I'm just to lazy...
Might be useful to someone else.
Can be used as a regular marker or modulation indicator for knobs if steps are increased a bit. Redraws are limited to the integer change.
Trivial and has surely been done a million times... probably just as many times better
Unnecessary amount of greens perhaps. I'm just to lazy...
Might be useful to someone else.
Can be used as a regular marker or modulation indicator for knobs if steps are increased a bit. Redraws are limited to the integer change.
- Attachments
-
- Interval_indicator.fsm
- (7.82 KiB) Downloaded 544 times
My beginner synth at KVR: https://www.kvraudio.com/product/saguaro-one-by-saguaro-one
- R&R
- Posts: 468
- Joined: Fri Jul 15, 2022 2:28 pm
12 posts
• Page 1 of 2 • 1, 2
Who is online
Users browsing this forum: No registered users and 47 guests