Remove unused function declaration

This commit is contained in:
GHOSCHT 2023-03-24 14:10:28 +01:00
parent 21b5796ee3
commit 215315bd3a
No known key found for this signature in database

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: