Skip to content

Commit

Permalink
Add some orange
Browse files Browse the repository at this point in the history
  • Loading branch information
Pairing Station 3 committed Apr 24, 2014
1 parent 51ef6c5 commit 3569009
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/TestStatus.ino
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ void color() {
case 'w':
set_rgb(254, 254, 254);
return;
case 'o':
set_rgb(255, 75, 0);
return;
case 't':
test_sequence();
return;
Expand Down Expand Up @@ -153,7 +156,7 @@ void indefinite_progress() {
}

bool is_color(char character) {
return (character == 'r' || character == 'g' || character == 'b' || character == 'y' || character == 'w');
return (character == 'r' || character == 'g' || character == 'b' || character == 'y' || character == 'w' || character == 'o');
}

void pulse() {
Expand Down Expand Up @@ -197,6 +200,7 @@ void set_color(char character) {
case 'b':
case 'y':
case 'w':
case 'o':
case 't':
case 'x':
case 'c':
Expand Down

0 comments on commit 3569009

Please sign in to comment.