Struct esp_idf_sys::touch_pad_denoise
source · [−]#[repr(C)]pub struct touch_pad_denoise {
pub grade: touch_pad_denoise_grade_t,
pub cap_level: touch_pad_denoise_cap_t,
}
Expand description
Touch sensor denoise configuration
Fields
grade: touch_pad_denoise_grade_t
<Select denoise range of denoise channel. Determined by measuring the noise amplitude of the denoise channel.
cap_level: touch_pad_denoise_cap_t
<Select internal reference capacitance of denoise channel.
Ensure that the denoise readings are closest to the readings of the channel being measured.
Use touch_pad_denoise_read_data
to get the reading of denoise channel.
The equivalent capacitance of the shielded channel can be calculated
from the reading of denoise channel.
Trait Implementations
sourceimpl Clone for touch_pad_denoise
impl Clone for touch_pad_denoise
sourcefn clone(&self) -> touch_pad_denoise
fn clone(&self) -> touch_pad_denoise
Returns a copy of the value. Read more
1.0.0fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for touch_pad_denoise
impl Debug for touch_pad_denoise
sourceimpl Default for touch_pad_denoise
impl Default for touch_pad_denoise
impl Copy for touch_pad_denoise
Auto Trait Implementations
impl RefUnwindSafe for touch_pad_denoise
impl Send for touch_pad_denoise
impl Sync for touch_pad_denoise
impl Unpin for touch_pad_denoise
impl UnwindSafe for touch_pad_denoise
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstablefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
fn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
Uses borrowed data to replace owned data, usually by cloning. Read more