diff options
author | HampusM <hampus@hampusmat.com> | 2022-03-21 09:43:10 +0100 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-03-21 09:43:10 +0100 |
commit | 12e3713e7705e4353d306ae2ec03abfe8fcd5f55 (patch) | |
tree | ced7df2c08a1afa4593fb15dcfa115effa4ad640 /src/status.hpp | |
parent | d5b6bc7bb8250dd252b8569e0896febf94c60b12 (diff) |
feat: add status LED
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;
|