
STEP INCREMENT (INT, FLOAT)
---------------------------

Increments/Decrements a Patch Memory Int value between the Min and Max values set.
Everytime the Inc or Dec pin is set to TRUE (or to FALSE, if On Release pin is set), Value will be incremented or decremented respectively by the amount specified by the Step pin.

By setting the Wrap pin, the value will be incremented or decremented cyclically within the range set.
The Wrap pin is present on the Int version only because with float values and increments smaller than one would cause a counter-intuitive behaviour.

Hints:
You may connect several Step Increment Float modules to a same Patch Memory float, each module set with a different Step value, eg. 1, 0.1, 0.01 and so on, to allow modification of the final value with different sets of buttons for different levels of precision.
To limit editing to single digits instead, you may use several Patch Memory Int's, each one controlled by a Step Increment Int module with a range of [0-9], convert every value to float, multiply each one by a different power of ten and sum the reults to obtain the final value
