Skip to main content

AmpZoneSettings

Struct AmpZoneSettings 

Source
pub struct AmpZoneSettings {
Show 14 fields pub gain_left: u8, pub gain_right: u8, pub volume_min: u8, pub volume_max: u8, pub delay_left: u32, pub delay_right: u32, pub bass: u8, pub treble: u8, pub bridged: u8, pub power_mode: u8, pub power_level: u8, pub power_timeout: u32, pub eq_left: [u8; 5], pub eq_right: [u8; 5],
}
Expand description

A ProAmp8 zone’s gain, delay, tone and power settings.

Gains and volume limits run 0-248 in 0.5dB steps, with 200 as 0dB. Gains are int16 inside the amp but a byte on the mesh, so a frame cannot carry the amp’s full internal range.

Fields§

§gain_left: u8

Left channel gain.

§gain_right: u8

Right channel gain.

§volume_min: u8

Lowest volume the zone may be set to.

§volume_max: u8

Highest volume the zone may be set to.

§delay_left: u32

Left channel delay, in 1/48000 second increments.

§delay_right: u32

Right channel delay, in 1/48000 second increments.

§bass: u8

Bass tone control, neutral at AMP_TONE_FLAT.

§treble: u8

Treble tone control, neutral at AMP_TONE_FLAT.

§bridged: u8

0 = normal, 1 = bridged.

§power_mode: u8

Power-on mode.

§power_level: u8

Signal level that switches the zone on automatically.

§power_timeout: u32

Idle time before the zone powers down, in seconds.

§eq_left: [u8; 5]

Left channel EQ, from 100Hz to 10KHz, neutral at AMP_TONE_FLAT.

§eq_right: [u8; 5]

Right channel EQ, from 100Hz to 10KHz, neutral at AMP_TONE_FLAT.

Trait Implementations§

Source§

impl Clone for AmpZoneSettings

Source§

fn clone(&self) -> AmpZoneSettings

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for AmpZoneSettings

Source§

impl Debug for AmpZoneSettings

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for AmpZoneSettings

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl Eq for AmpZoneSettings

Source§

impl PartialEq for AmpZoneSettings

Source§

fn eq(&self, other: &AmpZoneSettings) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for AmpZoneSettings

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.