pub struct Sensors<const S: usize> { /* private fields */ }

Implementations§

source§

impl<const S: usize> Sensors<S>

source

pub fn new( mode: SensorMode, activation: i16, deactivation: i16 ) -> Result<Sensors<S>, SensorError>

Initializes full Sensor array Only fails if static allocation fails (very unlikely)

  • mode: Sensor mode
  • activation: Activation point (distance, push direction)
  • deactivation: Deactivation point (distance, release direction)
source

pub fn add<const IDLE_LIMIT: usize>( &mut self, index: usize, reading: u16 ) -> Result<Option<&SenseData>, SensorError>

Add sense data for a specific sensor

source

pub fn get_data(&self, index: usize) -> Result<&SenseData, SensorError>

source

pub fn len(&self) -> usize

Max number of sensors

source

pub fn is_empty(&self) -> bool

Auto Trait Implementations§

§

impl<const S: usize> RefUnwindSafe for Sensors<S>

§

impl<const S: usize> Send for Sensors<S>

§

impl<const S: usize> Sync for Sensors<S>

§

impl<const S: usize> Unpin for Sensors<S>

§

impl<const S: usize> UnwindSafe for Sensors<S>

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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 Twhere U: Into<T>,

§

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 Twhere U: TryFrom<T>,

§

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.