mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-18 16:27:34 +01:00
21 lines
384 B
C++
21 lines
384 B
C++
#ifndef APPS_POWER_ON_SELF_TEST_H
|
|
#define APPS_POWER_ON_SELF_TEST_H
|
|
|
|
#include <kandinsky/color.h>
|
|
|
|
namespace OnBoarding {
|
|
|
|
class PowerOnSelfTest {
|
|
public:
|
|
/* Performs self tests, lights up the LED to indicate the tests results and
|
|
* returns the LED color previous to the tests. */
|
|
static KDColor Perform();
|
|
private:
|
|
constexpr static int k_textErrorsLimit = 0;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|
|
|