Interface HardwareBindingWithRange

All Superinterfaces:
HardwareBinding
All Known Subinterfaces:
AbsoluteHardwareControlBinding, RelativeHardwareControlToRangedValueBinding

public interface HardwareBindingWithRange extends HardwareBinding
Represents a binding from some hardware input to a ranged value.
Since:
API version 10
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Sets the maximum normalized value (0...1) that should be used for this binding.
    void
    Sets the minimum normalized value (0...1) that should be used for this binding.
    void
    setNormalizedRange(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.