Skip to content

Commit

Permalink
replace yellow
Browse files Browse the repository at this point in the history
  • Loading branch information
Nils Rossmann committed Nov 17, 2020
1 parent 1ebaa9d commit 45327ca
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Software/co2ampel/led.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ void ledSetColor(Color color) {
break;
case YELLOW:
fill_solid(led1,NUMPIXELS1,CRGB::Black);
fill_solid(led2,NUMPIXELS2,CRGB::Yellow);
fill_solid(led2,NUMPIXELS2,CRGB(255,100,0));
break;
case GREEN:
fill_solid(led1,NUMPIXELS1,CRGB::Green);
Expand All @@ -83,8 +83,8 @@ void ledSetColor(Color color) {
fill_solid(led2,NUMPIXELS2,CRGB::Red);
break;
case YELLOW2:
fill_solid(led1,NUMPIXELS1,CRGB::Yellow);
fill_solid(led2,NUMPIXELS2,CRGB::Yellow);
fill_solid(led1,NUMPIXELS1,CRGB(255,100,0));
fill_solid(led2,NUMPIXELS2,CRGB(255,100,0));
break;
case GREEN2:
fill_solid(led1,NUMPIXELS1,CRGB::Green);
Expand Down

0 comments on commit 45327ca

Please sign in to comment.