Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion TODO.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# MuMo SW V3

## known bugs
when unplugging the USB, sometimes the display is not updated immediately, but only at the next RTCtick ???


## ToDo's

Expand Down
2 changes: 1 addition & 1 deletion lib/application/maincontroller.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -803,7 +803,7 @@ void mainController::setSensor(const cliCommand& theCommand) {
if (tmpTime >= 60) {
cli::sendResponse("%u hours\n", tmpTime / 60);
} else {
cli::sendResponse("%u minutes", tmpTime);
cli::sendResponse("%u minutes\n", tmpTime);
}
}
}
Expand Down
Loading