1
1
mirror of https://github.com/OpenVoiceOS/OpenVoiceOS synced 2025-06-05 22:19:21 +02:00

MycroftOS: Changes to mycroft-splash

This commit is contained in:
Peter Steenbergen
2020-04-20 14:17:25 +02:00
parent 22c8c79444
commit 38b331f5f2
3 changed files with 5 additions and 5 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.9 KiB

After

Width:  |  Height:  |  Size: 27 KiB

View File

@ -12,15 +12,15 @@
#define _HAVE_PSPLASH_COLORS_H #define _HAVE_PSPLASH_COLORS_H
/* This is the overall background color */ /* This is the overall background color */
#define PSPLASH_BACKGROUND_COLOR 0x22,0xa7,0xf0 #define PSPLASH_BACKGROUND_COLOR 0x00,0x00,0x00
/* This is the color of any text output */ /* This is the color of any text output */
#define PSPLASH_TEXT_COLOR 0xff,0xff,0xff #define PSPLASH_TEXT_COLOR 0xff,0xff,0xff
/* This is the color of the progress bar indicator */ /* This is the color of the progress bar indicator */
#define PSPLASH_BAR_COLOR 0x2c,0x3e,0x50 #define PSPLASH_BAR_COLOR 0xff,0xff,0xff
/* This is the color of the progress bar background */ /* This is the color of the progress bar background */
#define PSPLASH_BAR_BACKGROUND_COLOR 0x22,0xa7,0xf0 #define PSPLASH_BAR_BACKGROUND_COLOR 0x00,0x00,0x00
#endif #endif

View File

@ -13,12 +13,12 @@
/* Text to output on program start; if undefined, output nothing */ /* Text to output on program start; if undefined, output nothing */
#ifndef PSPLASH_DISABLE_STARTUP_MSG #ifndef PSPLASH_DISABLE_STARTUP_MSG
#define PSPLASH_STARTUP_MSG "Booting MycroftOS" #define PSPLASH_STARTUP_MSG ""
#endif #endif
/* Bool indicating if the image is fullscreen, as opposed to split screen */ /* Bool indicating if the image is fullscreen, as opposed to split screen */
#ifndef PSPLASH_IMG_FULLSCREEN #ifndef PSPLASH_IMG_FULLSCREEN
#define PSPLASH_IMG_FULLSCREEN 0 #define PSPLASH_IMG_FULLSCREEN 1
#endif #endif
/* Position of the image split from top edge, numerator of fraction */ /* Position of the image split from top edge, numerator of fraction */