[][src]Struct joycon_rs::joycon::lights::home_button::LightEmittingPattern

pub struct LightEmittingPattern { /* fields omitted */ }

HOME light emitting pattern.

Methods

impl LightEmittingPattern[src]

pub fn new(
    global_mini_cycle_duration: u8,
    led_start_intensity: u8,
    repeat_count: u4
) -> Self
[src]

Constructor of LightEmittingPattern.

  • global_mini_cycle_duration (ms) - 0 <= global_mini_cycle_duration <= 175
  • led_start_intensity (%) - 0 <= led_start_intensity <= 100
  • repeat_count - 0 <= repeat_count <= 15: Value 0 is repeat forever.

pub fn push_phase(&mut self, phase: LightEmittingPhase)[src]

pub fn add_phase(
    self,
    led_intensity: u8,
    fading_transition_duration: u16,
    led_duration: u16
) -> Self
[src]

Add emitting phase to pattern.

  • led_intensity (%) - 0 <= led_intensity <= 100
  • fading_transition_duration (ms) - 0 < fading_transition_duration < self.global_mini_cycle_duration (ms) * 15
  • led_duration (ms) - 0 < fading_transition_duration < self.global_mini_cycle_duration (ms) * 15

pub fn emit_first_phase(&self) -> Self[src]

Does the 1st phase and then the LED stays on with LED Start Intensity.

Trait Implementations

impl Clone for LightEmittingPattern[src]

impl Debug for LightEmittingPattern[src]

impl Eq for LightEmittingPattern[src]

impl Hash for LightEmittingPattern[src]

impl Into<[u8; 25]> for LightEmittingPattern[src]

impl PartialEq<LightEmittingPattern> for LightEmittingPattern[src]

impl StructuralEq for LightEmittingPattern[src]

impl StructuralPartialEq for LightEmittingPattern[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.