-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FADER.SCALE, FADER.CAL.MIN/MAX, FADER.CAL.RESET (#198)
* add faderbank scaling * use ss_update_fader_scale_all * docs * changelog * remove commented line of code * clean up help_mode.c
- Loading branch information
Showing
15 changed files
with
265 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,34 @@ | ||
["FADER"] | ||
prototype = "FADER x" | ||
aliases = ["FB"] | ||
short = "reads the value of the `FADER` slider `x`; default return range is from 0 to 16383" | ||
short = "reads the value of the `FADER` slider `x`; default return range is from 0 to 16383" | ||
|
||
["FADER.SCALE"] | ||
prototype = "FADER.SCALE x y z" | ||
aliases = ["FB.S"] | ||
short = "Set static scaling of the `FADER x` to between `min` and `max`." | ||
|
||
["FADER.CAL.MIN"] | ||
prototype = "FADER.CAL.MIN x" | ||
aliases = ["FB.C.MIN"] | ||
short = "Reads `FADER x` minimum position and assigns a zero value" | ||
description = """ | ||
1. Slide FADER x all the way down to the bottom | ||
2. Execute `FADER.CAL.MIN x` from the live terminal | ||
3. Call `FADER x` and confirm the 0 result | ||
""" | ||
|
||
["FADER.CAL.MAX"] | ||
prototype = "FADER.CAL.MAX x" | ||
aliases = ["FB.C.MAX"] | ||
short = "Reads `FADER x` maximum position and assigns the maximum point" | ||
description = """ | ||
1. Slide FADER x all the way up to the top | ||
2. Execute `FADER.CAL.MAX x` from the live terminal | ||
3. Call `FADER x` and verify that the result is 16383 | ||
""" | ||
|
||
["FADER.CAL.RESET"] | ||
prototype = "FADER.CAL.RESET x" | ||
aliases = ["FB.C.R"] | ||
short = "Resets the calibration for FADER x" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.