diff options
Diffstat (limited to 'src/status.hpp')
-rw-r--r-- | src/status.hpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/status.hpp b/src/status.hpp new file mode 100644 index 0000000..ff8980e --- /dev/null +++ b/src/status.hpp @@ -0,0 +1,9 @@ +#pragma once
+
+#include <stdint.h>
+
+constexpr uint8_t STATUS_LED_POSITIVE = 5U;
+
+void initialize_status_leds() noexcept;
+
+void set_led_positive(uint8_t value) noexcept;
|