Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
forntoh committed Jan 31, 2025
1 parent bd1f799 commit 890bc00
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/display/LCD_I2CAdapter.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*
* Library Used: https://github.com/blackhack/LCD_I2C/
* This adapter may have issues, as it was not written by the original author
*
*
* @note This class requires the LCD_I2C library.
*
* @param lcd Pointer to a LCD_I2C object that this adapter will interact with.
Expand All @@ -42,9 +42,9 @@ class LCD_I2CAdapter : public CharacterDisplayInterface {

void setBacklight(bool enabled) override {
if (enabled) {
lcd->backlight();
lcd->backlight();
} else {
lcd->noBacklight();
lcd->noBacklight();
}
}

Expand Down

0 comments on commit 890bc00

Please sign in to comment.