Skip to content

Commit

Permalink
LCD: Removed Warning if text is too long
Browse files Browse the repository at this point in the history
  • Loading branch information
PBrunot committed Jun 16, 2024
1 parent 1cbf454 commit 1fd8600
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/LCDWrapper.tpp
Original file line number Diff line number Diff line change
Expand Up @@ -205,11 +205,6 @@ namespace fabomatic
template <typename TLcdDriver>
void LCDWrapper<TLcdDriver>::setRow(uint8_t row, const std::string_view &text)
{
if (text.length() >= conf::lcd::COLS)
{
ESP_LOGW(TAG, "LCDWrapper::setRow: text too long : %s\r\n", text.data());
}

if (row < conf::lcd::ROWS)
{
buffer[row].fill({0});
Expand Down

0 comments on commit 1fd8600

Please sign in to comment.