RFE: count CHOP increment/decrement...

it would be handy to have the count CHOP set up so that, if it got a positive input, it would increment but, on a negative input, decrement. good for building continuous knobs etc.

rod.

Has this been solved yet? I am trying to get the count chop to increase when I press one button and decrease when I press another, seems simple enough, but I can’t figure it out.

It would simplify things up !

A simple “work-around”… hope this helps…
count_workarnd.tox (822 Bytes)

Hi Nabhan,

I am struggling a little getting your tox to work… how do I have one button increase and another decrease the same channel?

Cheers,

O. :smiley:

figured it out - here’s an updated version of your .tox for all of you our there struggling with the same problem! :smiley:
upDown_buttons.tox (2.19 KB)

Another quick way to do this actually, is to have two separate Count CHOPs.
One for each button.
They both count up.

Then take their two outputs, and subtract them in a Math CHOP.

If you want any clamping etc, you’ll have it do it separately after with a Limit CHOP.

Cheers,
Rob.

Good example.

I managed to drop it down to a Logic CHOP Or and a Math subtract feeding the Count CHOP.

Also sometimes I create a 1-cell table and read-write it from one-liners in two Panel Execute DATs.
upDown_buttons.tox (2.83 KB)

Cheers guys, both methods make sense! :smiley: