Lines Matching +full:relative +full:- +full:axis
4 - gpios: a spec for at least two GPIOs to be used, most significant first
7 - linux,axis: the input subsystem axis to map to this rotary encoder.
9 - rotary-encoder,steps: Number of steps in a full turnaround of the
10 encoder. Only relevant for absolute axis. Defaults to 24 which is a
12 - rotary-encoder,relative-axis: register a relative axis rather than an
13 absolute one. Relative axis will only generate +1/-1 events on the input
15 - rotary-encoder,rollover: Automatic rollover when the rotary value becomes
16 greater than the specified steps or smaller than 0. For absolute axis only.
17 - rotary-encoder,steps-per-period: Number of steps (stable states) per period.
19 1: Full-period mode (default)
20 2: Half-period mode
21 4: Quarter-period mode
22 - wakeup-source: Boolean, rotary encoder can wake up the system.
23 - rotary-encoder,encoding: String, the method used to encode steps.
27 - rotary-encoder,half-period: Makes the driver work on half-period mode.
28 This property is deprecated. Instead, a 'steps-per-period ' value should
29 be used, such as "rotary-encoder,steps-per-period = <2>".
31 See Documentation/input/devices/rotary-encoder.rst for more information.
36 compatible = "rotary-encoder";
38 linux,axis = <0>; /* REL_X */
39 rotary-encoder,encoding = "gray";
40 rotary-encoder,relative-axis;
44 compatible = "rotary-encoder";
46 linux,axis = <1>; /* ABS_Y */
47 rotary-encoder,steps = <24>;
48 rotary-encoder,encoding = "binary";
49 rotary-encoder,rollover;