16 lines
150 B
C++
16 lines
150 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
namespace LED {
|
|
|
|
void Init();
|
|
void Pulsating();
|
|
void Off();
|
|
void Error(uint8_t code);
|
|
|
|
void On();
|
|
void Toggle();
|
|
|
|
}
|