Skip to content

Commit

Permalink
Display position within the loop by default
Browse files Browse the repository at this point in the history
Signed-off-by: Petr Horacek <[email protected]>
  • Loading branch information
phoracek committed Oct 24, 2023
1 parent 9f4134e commit d684c6b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
5 changes: 1 addition & 4 deletions control/src/cache/display.rs
Original file line number Diff line number Diff line change
Expand Up @@ -122,10 +122,7 @@ impl Default for Display {
None,
None,
None,
Some(Screen::Attribute(
0,
AttributeScreen::HeadsOverview(([false; 4], [false; 4])),
)),
Some(Screen::Attribute(0, AttributeScreen::Position(0))),
],
}
}
Expand Down
4 changes: 2 additions & 2 deletions control/src/store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -507,10 +507,10 @@ fn update_default_display_configuration(
}

if speed.value() < 0.5 {
draft.default_display_page = DisplayPage::Heads;
draft.default_display_page = DisplayPage::Position;
Some(ConfigurationScreen::DefaultScreen(0))
} else {
draft.default_display_page = DisplayPage::Position;
draft.default_display_page = DisplayPage::Heads;
Some(ConfigurationScreen::DefaultScreen(1))
}
}
Expand Down
6 changes: 3 additions & 3 deletions manual/user/manual.tex
Original file line number Diff line number Diff line change
Expand Up @@ -553,12 +553,12 @@ \subsection{Default display page}

Select what should be visualized on the display when pots are inactive.

\textbf{Position within the loop} -- the LEDs blink in round-robin fashion,
representing the current position within the loop. This is the default.

\textbf{Active heads} -- the top and bottom rows of LEDs represent heads with
active playback and feedback respectively.

\textbf{Position within the loop} -- the LEDs blink in round-robin fashion,
representing the current position within the loop.

While in the configuration menu, turn the SPEED knob to select the default page.

\end{minipage}
Expand Down

0 comments on commit d684c6b

Please sign in to comment.