Skip to content

Commit

Permalink
Drop lost onLedEffectQuery methods
Browse files Browse the repository at this point in the history
Signed-off-by: Evy Bongers <[email protected]>
  • Loading branch information
EvyBongers committed Feb 19, 2024
1 parent 983dc08 commit 4ba1f0d
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,7 @@ class FingerPainter : public LEDMode {
EventHandlerResult onKeyEvent(KeyEvent &event);
EventHandlerResult onFocusEvent(const char *input);
EventHandlerResult onSetup();
EventHandlerResult onLedEffectQuery();
EventHandlerResult onNameQuery();
EventHandlerResult onLedEffectQuery();

protected:
void update() final;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@ class TriColor : public Plugin,
TriColor() { ledModeName = "TriColorEffect"; }
TriColor(char *customName) { ledModeName = customName; }

EventHandlerResult onLedEffectQuery();

TriColor(cRGB base_color, cRGB mod_color, cRGB esc_color);
TriColor(cRGB base_color, cRGB mod_color)
: TriColor(base_color, mod_color, mod_color) {}
Expand Down

0 comments on commit 4ba1f0d

Please sign in to comment.