Remove unused function declaration

This commit is contained in:
GHOSCHT 2023-03-24 14:10:28 +01:00
parent 3b553ecb39
commit e61ebc390d

View file

@ -8,7 +8,6 @@
namespace LightController {
enum class LightActionType { INCREASE, DECREASE, TOGGLE, ON, OFF };
using LightAction = etl::pair<LightActionType, etl::optional<uint8_t>>;
void init(const etl::span<int> pins);
template <int... PIN> class Controller {
public: