reactivated 80m, changed to color scheme to green on black

This commit is contained in:
Michael Clemens 2021-05-17 17:29:57 +02:00
parent 36cd505e8e
commit 6dceffd993
2 changed files with 4 additions and 5 deletions

View File

@ -20,7 +20,7 @@ constexpr Band_t bands [] PROGMEM {
// { 0UL, 65535UL, 254, "UF"},//Utility conversion option
// { 530000UL, 1700000UL, 253, "AM"},//Broadcast AM, actually centers at 268, but uint8 can't do that
// { 1800000UL, 2000000UL, 160, "A0"},//0xA0 is 160
// { 3500000UL, 3800000UL, 80, "80"},
{ 3500000UL, 3800000UL, 80, "80"},
// { 5330500UL, 5403500UL, 60, "60"},
{ 7000000UL, 7200000UL, 40, "40"},
{10100000UL, 10150000UL, 30, "30"},
@ -127,4 +127,3 @@ bool isFreqInBand(const uint32_t frequency,
return false;
}

View File

@ -3,7 +3,7 @@
#include "colors.h"
static const unsigned int COLOR_TEXT = DISPLAY_WHITE;
static const unsigned int COLOR_BACKGROUND = DISPLAY_NAVY;
static const unsigned int COLOR_BACKGROUND = DISPLAY_BLACK;
static const unsigned int COLOR_ACTIVE_VFO_TEXT = DISPLAY_WHITE;
static const unsigned int COLOR_ACTIVE_VFO_BACKGROUND = DISPLAY_BLACK;
@ -16,7 +16,7 @@ static const unsigned int COLOR_INACTIVE_BACKGROUND = DISPLAY_BLACK;
static const unsigned int COLOR_INACTIVE_BORDER = DISPLAY_DARKGREY;
static const unsigned int COLOR_ACTIVE_TEXT = DISPLAY_BLACK;
static const unsigned int COLOR_ACTIVE_BACKGROUND = DISPLAY_ORANGE;
static const unsigned int COLOR_ACTIVE_BACKGROUND = DISPLAY_GREEN;
static const unsigned int COLOR_ACTIVE_BORDER = DISPLAY_WHITE;
static const unsigned int COLOR_VERSION_TEXT = DISPLAY_LIGHTGREY;
static const unsigned int COLOR_VERSION_TEXT = DISPLAY_GREEN;