Browse Source

Avoid waking display from rotary input

pull/2966/head
Quency-D 1 week ago
parent
commit
b26f53a263
  1. 12
      examples/companion_radio/ui-new/UITask.cpp

12
examples/companion_radio/ui-new/UITask.cpp

@ -751,12 +751,12 @@ void UITask::loop() {
} }
#endif #endif
#if defined(UI_HAS_ROTARY_INPUT) #if defined(UI_HAS_ROTARY_INPUT)
if (c == 0) { RotaryInputEvent rotaryEv = rotary_input.poll();
RotaryInputEvent ev = rotary_input.poll(); if (c == 0 && _display != NULL && _display->isOn()) {
if (ev == RotaryInputEvent::Next) { if (rotaryEv == RotaryInputEvent::Next) {
c = checkDisplayOn(KEY_NEXT); c = KEY_NEXT;
} else if (ev == RotaryInputEvent::Prev) { } else if (rotaryEv == RotaryInputEvent::Prev) {
c = checkDisplayOn(KEY_PREV); c = KEY_PREV;
} }
} }
#endif #endif

Loading…
Cancel
Save