pub trait EncoderConfig: DebouncedInputConfig {
    type Counts: AddAssign + Integer + Signed + Copy;

    const COUNTS_DIV: Self::Counts;
}
Expand description

Represents a config for Encoder.

Required Associated Types

The type of counts counter.

Required Associated Constants

The number of counts to register one turn of the encoder.

Implementors