Skip to content

Commit

Permalink
Bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Tommy4chan authored Oct 17, 2022
1 parent 3a712df commit d274448
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
5 changes: 4 additions & 1 deletion examples/SetColor/SetColor.ino
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,8 @@ void setup()

void loop()
{
Led.SetPresetFunction(40, 100);
Led.SetColor(255,0,0,0,100);
delay(1000);
Led.SetColor(0,0,255,0,50);
delay(1000);
}
5 changes: 3 additions & 2 deletions examples/SetPreset/SetPreset.ino
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,6 @@ void setup()

void loop()
{
Led.SetPresetFunction(40, 100);
}
Led.SetPresetFunction(40,100);
delay(10000);
}

0 comments on commit d274448

Please sign in to comment.