MimiCustomParameterControl

public enum MimiCustomParameterControl : Sendable, Equatable

A firmware-supplied hint for how a custom (debug) parameter should be presented.

Warning

Debugging/development-only. See MimiCustomParameter.
  • A continuous/stepped slider, backed by a double or int value.

    Declaration

    Swift

    case slider(min: Double, max: Double, step: Double)
  • An on/off toggle, backed by a bool value.

    Declaration

    Swift

    case toggle
  • A choice picker, backed by an int or string value.

    Declaration

    Swift

    case picker(options: [MimiCustomParameterPickerOption])
  • A free-form text field, backed by a string value.

    Declaration

    Swift

    case textField
  • The firmware did not declare a recognised control.

    Declaration

    Swift

    case unspecified