RotaryEncoder

Struct RotaryEncoder 

Source
pub struct RotaryEncoder { /* private fields */ }
Expand description

Encoder struct with internal states.

Implementations§

Source§

impl RotaryEncoder

Source

pub fn new() -> Self

Creates a new instance.

Source

pub fn update<T: Into<bool>>( &mut self, input_a: T, input_b: T, tick: Option<u64>, pulse_divider: i32, ) -> Option<RotaryEncoderEvent>

Updates the processor and returns an event if a movement is detected.

  • input_a and input_b are the signals of the encoder pins.
  • tick is a monotonic value from the system clock used for velocity calculation.
  • pulse_divider determines how many pulses must occur before an event is generated.
Source

pub fn reset(&mut self)

Resets all internal states to initial values.

Source

pub fn value(&self) -> i32

Returns the current value.

Source

pub fn set_value(&mut self, value: i32)

Sets the current value.

Trait Implementations§

Source§

impl Debug for RotaryEncoder

Source§

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

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

impl Default for RotaryEncoder

Source§

fn default() -> RotaryEncoder

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

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> 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, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

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

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

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.