[apps] Change color of LED in power on self test: blue is too easily

confused with white
This commit is contained in:
Émilie Feral
2019-12-20 14:02:08 +01:00
committed by RubenNumworks
parent 4e96a11a4c
commit 053fb935e3
2 changed files with 2 additions and 1 deletions

View File

@@ -20,7 +20,7 @@ KDColor PowerOnSelfTest::Perform() {
resultColor = KDColorRed;
}
} else {
resultColor = KDColorBlue;
resultColor = KDColorPurple;
}
Ion::LED::setColor(resultColor);
return previousLEDColor;

View File

@@ -45,5 +45,6 @@ constexpr KDColor KDColorGreen = KDColor::RGB24(0x00FF00);
constexpr KDColor KDColorBlue = KDColor::RGB24(0x0000FF);
constexpr KDColor KDColorYellow = KDColor::RGB24(0xFFFF00);
constexpr KDColor KDColorOrange = KDColor::RGB24(0xFF9900);
constexpr KDColor KDColorPurple = KDColor::RGB24(0xFF00DD);
#endif