blob: 2712895c398e155c81e234b7da963f62f8f4263a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "status.hpp"
#include <Arduino.h>
void initialize_status_leds() noexcept
{
pinMode(STATUS_LED_POSITIVE, OUTPUT);
}
void set_led_positive(uint8_t value) noexcept
{
digitalWrite(STATUS_LED_POSITIVE, value);
}
|