Skip to content

Commit

Permalink
Update Effects.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ewoudwijma authored Mar 8, 2024
1 parent 922b8cb commit f670152
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions docs/BasicsLed/Effects.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ Text
```
class ExampleEffect: public Effect {
public:
const char * name() {return "Octopus";}
const char * name() {return "ExampleEffect";}
unsigned8 dim() {return _2D;}
const char * tags() {return "💡";}
const char * tags() {return "💫💡⚡♪♫";}
void loop(Leds &leds) {
Expand All @@ -39,7 +39,6 @@ public:
}
void controls(JsonObject parentVar) {
addPalette(parentVar, 4);
ui->initSlider(parentVar, "speed", 128, 1, 255);
ui->initSlider(parentVar, "Legs", 4, 1, 8);
}
Expand Down

0 comments on commit f670152

Please sign in to comment.