2021-10-02 18:14:58 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Tyler Perkins
|
|
|
|
// 9-29-21
|
|
|
|
// configuration file
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "config.hpp"
|
|
|
|
|
|
|
|
// PANELS
|
|
|
|
// A list of all panels to be displayed, in order
|
|
|
|
dashboard::panel::panel* PANELS[] = {
|
|
|
|
new dashboard::panel::weather(),
|
|
|
|
};
|
|
|
|
size_t PANELS_LENGTH = sizeof(PANELS)/sizeof(PANELS[0]);
|
|
|
|
|
|
|
|
// IMAGE_LOCATIONS
|
|
|
|
// Locations of all static images used
|
|
|
|
const char* IMAGE_LOCATIONS[] = {
|
|
|
|
"bmp_24.png",
|
|
|
|
};
|
|
|
|
size_t IMAGE_LOCATIONS_LENGTH = sizeof(IMAGE_LOCATIONS)/sizeof(IMAGE_LOCATIONS[0]);
|
|
|
|
|
|
|
|
// FONT_LOCATIONS
|
|
|
|
// Locations of all fonts used
|
|
|
|
//struct FONT_SIZE {
|
|
|
|
// const char* _name;
|
|
|
|
// const size_t _size;
|
|
|
|
//};
|
|
|
|
const FONT_SIZE FONT_LOCATIONS[] = {
|
2021-12-20 01:29:41 +00:00
|
|
|
{ "Roboto_Mono/RobotoMono-Medium.ttf", 50 },
|
2021-10-02 18:14:58 +00:00
|
|
|
};
|
|
|
|
size_t FONT_LOCATIONS_LENGTH = sizeof(FONT_LOCATIONS)/sizeof(FONT_LOCATIONS[0]);
|
|
|
|
|
|
|
|
// CONST_STRINGS
|
|
|
|
// All constant strings
|
|
|
|
//struct FONT_SIZE_STRING {
|
|
|
|
// const char* _text;
|
|
|
|
// const FONT_SIZE _font_size;
|
|
|
|
//};
|
|
|
|
const FONT_SIZE_STRING CONST_STRINGS[] = {
|
|
|
|
//Weather strings
|
2021-12-20 01:05:50 +00:00
|
|
|
{ "Today's Weather", { "Roboto_Mono/RobotoMono-Medium.ttf", 36 } },
|
2021-10-02 18:14:58 +00:00
|
|
|
};
|
|
|
|
size_t CONST_STRINGS_LENGTH = sizeof(CONST_STRINGS)/sizeof(CONST_STRINGS[0]);
|