Skip to content

Commit cb96503

Browse files
author
Scott Powell
committed
* Companion: new-ui, power off now labelled "hibernate"
1 parent 5cd1df4 commit cb96503

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/companion_radio/ui-new/UITask.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -213,10 +213,10 @@ class HomeScreen : public UIScreen {
213213
display.setColor(DisplayDriver::GREEN);
214214
display.setTextSize(1);
215215
if (_shutdown_init) {
216-
display.drawTextCentered(display.width() / 2, 34, "shutting down...");
216+
display.drawTextCentered(display.width() / 2, 34, "hibernating...");
217217
} else {
218218
display.drawXbm((display.width() - 32) / 2, 18, power_icon, 32, 32);
219-
display.drawTextCentered(display.width() / 2, 64 - 11, "off: " PRESS_LABEL);
219+
display.drawTextCentered(display.width() / 2, 64 - 11, "hibernate: " PRESS_LABEL);
220220
}
221221
}
222222
return 5000; // next render after 5000 ms

0 commit comments

Comments
 (0)