[][src]Enum ads1x1x::FullScaleRange

pub enum FullScaleRange {
    Within6_144V,
    Within4_096V,
    Within2_048V,
    Within1_024V,
    Within0_512V,
    Within0_256V,
}

Full-scale range configuration for the programmable gain amplifier (PGA) (only for ADS1x14, ADS1x15)

This sets the input voltage measurable range. The FSR is fixed at ±2.048 V in the ADS1x13.

Variants

Within6_144V

The measurable range is ±6.144V.

Within4_096V

The measurable range is ±4.096V.

Within2_048V

The measurable range is ±2.048V. (default)

Within1_024V

The measurable range is ±1.024V.

Within0_512V

The measurable range is ±0.512V.

Within0_256V

The measurable range is ±0.256V.

Trait Implementations

impl Clone for FullScaleRange[src]

impl Copy for FullScaleRange[src]

impl Debug for FullScaleRange[src]

impl Default for FullScaleRange[src]

impl PartialEq<FullScaleRange> for FullScaleRange[src]

impl StructuralPartialEq for FullScaleRange[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.