Interface HardwareBindingWithRange
- All Superinterfaces:
HardwareBinding
- All Known Subinterfaces:
AbsoluteHardwareControlBinding,RelativeHardwareControlToRangedValueBinding
Represents a binding from some hardware input to a ranged value.
- Since:
- API version 10
-
Method Summary
Modifier and TypeMethodDescriptionvoidsetMaxNormalizedValue(double max) Sets the maximum normalized value (0...1) that should be used for this binding.voidsetMinNormalizedValue(double min) Sets the minimum normalized value (0...1) that should be used for this binding.voidsetNormalizedRange(double min, double max) Sets the normalized range (0...1) that should be used for this binding.Methods inherited from interface com.bitwig.extension.controller.api.HardwareBinding
removeBinding
-
Method Details
-
setMinNormalizedValue
void setMinNormalizedValue(double min) Sets the minimum normalized value (0...1) that should be used for this binding. -
setMaxNormalizedValue
void setMaxNormalizedValue(double max) Sets the maximum normalized value (0...1) that should be used for this binding. -
setNormalizedRange
void setNormalizedRange(double min, double max) Sets the normalized range (0...1) that should be used for this binding.
-