MimiCustomParameterControl
public enum MimiCustomParameterControl : Sendable, Equatable
A firmware-supplied hint for how a custom (debug) parameter should be presented.
Warning
Debugging/development-only. SeeMimiCustomParameter.
-
A continuous/stepped slider, backed by a
doubleorintvalue.Declaration
Swift
case slider(min: Double, max: Double, step: Double) -
An on/off toggle, backed by a
boolvalue.Declaration
Swift
case toggle -
A choice picker, backed by an
intorstringvalue.Declaration
Swift
case picker(options: [MimiCustomParameterPickerOption]) -
A free-form text field, backed by a
stringvalue.Declaration
Swift
case textField -
The firmware did not declare a recognised control.
Declaration
Swift
case unspecified
MimiCustomParameterControl Enumeration Reference