# `CvOut` ## Description `CvOut` represents an analog CV output. ## Usage ### `erbui` ```erbui module Example { control vco_amp CvOut { // 1. position 19.2mm, 111mm // 2. style knurled // 3. label "AMP" // 4. mode bipolar // 5. pin DacPin1 // 6. } } ``` 1. Creates a CV output control with name `vco_amp`, 2. Sets the control position on the front panel, 3. Sets the optional style of the control, 4. Sets the optional label for the control, using its default theme positioning, 5. Sets the optional mode for the control, bipolar by default, 6. Sets the optional physical board pin to use. If not set, the system will choose it automatically. > Nuts and washers photos are from the [Thonk shop](https://www.thonk.co.uk/shop/3-5mm-jacks/). ### `c++` `CvOut` is a type that abstracts a physical CV output block. ```c++ struct Example { ExampleUi ui; void process () { ui.vco_amp = ...; // 1. } } ``` 1. Sets the normalised (in the `0.f` to `1.f` range) or bipolar (in the `-1.f` to `1.f` range) floating-point value. ## `erbui` Control Reference ### `control` definition ``` control CvOut { ... } ``` Where `` is the name of the control. More details can be found in [`control`](../erbui/grammar.html#control) documentation. ### `position` property ``` position , ``` Sets the position of the control, where the axis origin is the top-left corner. The `x` axis is oriented from left to right, and the `y` axis is oriented from top to bottom. The position component values are expressed with their unit, either `mm` or `hp`. Example: ``` position 2hp, 15mm ``` More details can be found in [`position`](../erbui/grammar.html#position) documentation. ### `style` optional property ``` style ``` Where `` is one of: - `knurled` (this is the default if not specified), - `hex`. More details can be found in [`style`](../erbui/grammar.html#style) documentation. ### `label` optional property ``` label "" ``` Where `` is the text displayed. More details can be found in [`label`](../erbui/grammar.html#label) documentation. ### `mode` optional property `mode` defines the electrical range used on the jack connector output. ``` mode ``` Where `` is one of: - `bipolar`, ±5V, this is the _default_ value, - `normalized`, from 0V to 5V. More details can be found in [`mode`](../erbui/grammar.html#mode) documentation. ## `c++` Member Functions Synopsys | Name | Synopsys | | - | - | | [`operator =`](#operator-=) | Sets the CV value | ## `c++` Member Functions ### `operator =` ```c++ CvOut & operator = (float val); ``` Sets the normalised (in the `0.f` to `1.f` range) or bipolar (in the `-1.f` to `1.f` range) floating-point value.