update config to use new plex panel

This commit is contained in:
Tyler Perkins 2021-12-23 14:19:11 -05:00
parent a17dd5eb56
commit 2d1a3db3e2
2 changed files with 2 additions and 0 deletions

View File

@ -10,6 +10,7 @@
// A list of all panels to be displayed, in order
dashboard::panel::panel* PANELS[] = {
//new dashboard::panel::sample_panel(),
new dashboard::panel::plex(),
new dashboard::panel::weather(),
new dashboard::panel::wifi(),
};

View File

@ -78,6 +78,7 @@ constexpr int IMG_FLAGS = 0
#include "panel/weather.hpp"
#include "panel/def_overlay.hpp"
#include "panel/wifi.hpp"
#include "panel/plex.hpp"
//uncomment this to use the sample panel
//#include "panel/sample_panel.hpp"
extern dashboard::panel::panel* PANELS[];