Skip to content

Commit

Permalink
Merge pull request #553 from dfsx1/master
Browse files Browse the repository at this point in the history
Fix #534 ILI9486 Failed to start: src/drv/tft/tft_driver_lovyangfx.cpp
  • Loading branch information
fvanroie authored Oct 1, 2023
2 parents af9cf97 + ad0f69f commit 1b24478
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/drv/tft/tft_driver_lovyangfx.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,11 @@ lgfx::Panel_Device* LovyanGfx::_init_panel(lgfx::IBus* bus)
LOG_VERBOSE(TAG_TFT, F("Panel_ILI9481_b"));
break;
}
case TFT_PANEL_ILI9486: {
panel = new lgfx::Panel_ILI9486();
LOG_VERBOSE(TAG_TFT, F("Panel_ILI9486"));
break;
}
case TFT_PANEL_ILI9488: {
panel = new lgfx::Panel_ILI9488();
LOG_VERBOSE(TAG_TFT, F("Panel_ILI9488"));
Expand Down

0 comments on commit 1b24478

Please sign in to comment.